I want to create a table with a lot of columns in dolphidndb, but I can't find a convenient way?
If I use the t = table(size:capacity,names,types)
, when I have many many columns, it is not convenient to modify and add or delete some columns.
colNames = ["col1","col2","col3","col4","col5","col6","col7","col8" ...]
colTypes = [STRING,DOUBLE,INT,LONG,SYMBOL,LONG,DATE,TIME,TIMESTAMP ...]
t = table(100:0,colNames,colTypes)
Is there more convenient way to do this work?