Reputation: 39
I had created some tables in sys. how to delete them fully? can i do that : 1.drop table [your_tablename] 2.delete table [your_tablename] but my teacher told me that is wrong,how should I write a SQL statement?
and my MonetDB's version is [MonetDB Database Server Toolkit v1.1 (Jul2015-SP2)]
i used squirrel to connect.like this:
Upvotes: 0
Views: 653
Reputation: 6834
According to MonetDB
documentation, it should be
drop table <table_name>
Read more about the Drop Statement
.
Upvotes: 2