Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 dolphindb 中写一个关于空表的测试用例。但是在手册中,我只能找到如何初始化一个 int(float/temporal scalar) 或一个向量....因此,如何在 dolphindb 中初始化一个空表?
请使用函数table创建一个空表
table
colNames =`id`value colTypes =[INT, DOUBLE] capacity = 1000 size = 10 t = table(capacity : size, colNames, colTypes)