0
votes

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

1
What's wrong with drop table <table_name>? - Forge
if i drop a lots of tables(maybe there tablename is the same) ,how to know the table where i drop is in sys? can i do like this :set schema sys;drop table <table_name> - xiang Gao

1 Answers

2
votes

According to MonetDB documentation, it should be

drop table <table_name>

Read more about the Drop Statement.