11 lines
222 B
MySQL
11 lines
222 B
MySQL
|
-- Syntax
|
||
|
-- DROP TABLE [ IF EXISTS ] table_identifier [ PURGE ]
|
||
|
|
||
|
DROP TABLE userDB.employable;
|
||
|
|
||
|
DROP TABLE IF EXISTS employable;
|
||
|
DROP TABLE employable;
|
||
|
|
||
|
DROP TABLE IF EXISTS employable PURGE;
|
||
|
DROP TABLE employable PURGE;
|