Drop Table


DROP table statement is used to delete a table and all the data like- indexes, triggers etc.

Syntax :-
DROP TABLE TBName;
Example : Let us first verify the my_tb  table name and then we will delete it from the database as shown below.

Query  : 
DROP TABLE my_tb;
Output  :