删除dolphindb表的指定行-灵析社区

霹雳青

想要删除表中某一列为空的记录,但是似乎不支持,报告异常 It is not allowed to delete rows from tables other than basic in-memory tables and segmented in-memory tables. dolphindb应该如何删除单行记录? delete from trades where isNull(symbol)

阅读量:133

点赞量:0

问AI
对于分布式表,DolphinDB不支持删除单条记录,仅支持以分区为单位删除批量数据。一般碰到这种情况就把所在分区数据读出来,进行更新后再回写。