如何只删除kdb中的表?

时间:2015-12-16 14:46:32

标签: kdb

说:

q) \a .x
`a`b

q) \f .x
`f1`f2

我只需删除表a和b而不删除函数。现在在这种情况下,我可以简单地说delete a,b from `.x但是有没有办法实现这个功能呢?

1 个答案:

答案 0 :(得分:4)

您可以使用以下内容。

q)tables[]  /get list of tables in current namespace
`table1`table2`table3..

q)parse"delete table1 from `."   /get the parse tree - needed to functionalise

q)![`.;();0b;tables[]]  /combine to delete only tables
`.
q)tables[]
`symbol$()

使用名称空间

q)tables `.b
`table3`table4`table5
q){![x;();0b;tables x]} `.b
`.b
q)tables `.b
`symbol$()

希望这有帮助

康纳