300x250 AD TOP

helooo
Tagged under:

how to Drop a Table



The SQL DROP TABLE statement is used to remove a table definition and all data, indexes, triggers, constraints, and permission specifications for that table.
NOTE: You have to be careful while using this command because once a table is deleted then all the information available in the table would also be lost forever.
Syntax:

DROP TABLE table_name; 

Example:
SQL> DROP TABLE CUSTOMERS;

Now, if you would try DESC command, then you would get error as follows:

SQL> DESC CUSTOMERS;
ERROR 1146 (42S02): Table 'TEST.CUSTOMERS' doesn't exist


Here, TEST is database name which we are using for our examples.