Skip to content

tables

List of tables in a namespace

tables x    tables[x]

Where x is a reference to a namespace, returns as a symbol vector a sorted list of the tables in x

q)\l sp.q
q)tables `.       / tables in root namespace
`p`s`sp
q)tables[]        / default is root namespace
`p`s`sp
q).work.tab:sp    / assign table in work namespace
q)tables `.work   / tables in work
,`tab

Metadata