Reputation: 9
In MySQL, for the useless data, we can use the DROP TABLE command to delete it from the database. However, for the TDengine database, which SQL command can allow me to do the same thing?
Upvotes: 0
Views: 120
Reputation: 167
You could follow the same routine to drop database/table as this is pretty much the same follows SQL standard: drop database db_name drop table tb_name
Upvotes: 1