Reputation: 11
In MySQL, I can use DROP TABLE command to completely remove the data in a variable. In dolphindb, which command can allow me to do the same thing?
Upvotes: 0
Views: 93
Reputation: 2166
t=table(1 2 3 as x, 4 5 6 as y)
db = database("C:/DolphinDB/Data/test")
saveTable(db,t);
dropTable(db,`t);
There is an extensive documentation for dolphin DB: http://www.dolphindb.com/help/
Upvotes: 0