Lan Zhang
Lan Zhang

Reputation: 11

Drop a table in dolphindb

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

Answers (1)

Nesan Mano
Nesan Mano

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

Related Questions