DROP TABLE

The DROP statement deletes a table from the database. Neither data from the table in the database nor a defined table structure will appear.

Structure:
DROP TABLE table_name1;

 

Example1:

DROP TABLE Staff;

 

Leave a Comment

Your email address will not be published. Required fields are marked *