为什么 count分布式表返回0

在DolphinDB中,执行下列代码:

t1 = loadTable('dfs://db02','table01');
count t1;

返回 0 什么原因呢?

请先 登录 后评论

1 个回答

Juntao Wang

分布式表的操作请使用sql语句。

select count(*from t1

select count(*from loadTable('dfs://db02','table01')
请先 登录 后评论