DolphinDB数据库中的以下SQL语句 n=10000
x = select top n * from bn_1m_spot 返回以下错误消息: Syntax Error: [line #2] integerconstant expected after keyword top 在DolphinDB SQL中,有没有办法在关键字top之后使用变量?
我在DolphinDB中有一个DFS表。我试图运行一个查询,该查询将计算此表上的分组中介。但这只是个例外。select median(col1) from t group by col2
列med(v1)中的聚合函数没有映射减少实现,不能应用于分区或分布式表。在我看来,DolphinDB不支持分布式中值算法。