0
there is a command to delete the table itself?
3 Answers
+ 7
DROP TABLE table_name
+ 1
Drop the table, ie. Use drop command..
0
--To ensure foreign key restraints don't get in the way of executing:
SET foreign_key_checks = 0;
DROP TABLE IF EXISTS tablename;
SET foreign_key_checks = 1;