xiang Gao
xiang Gao

Reputation: 39

MonetDB delete table fully

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:

enter image description here

Upvotes: 0

Views: 653

Answers (1)

Forge
Forge

Reputation: 6834

According to MonetDB documentation, it should be

drop table <table_name>

Read more about the Drop Statement.

Upvotes: 2

Related Questions