Sql Query To Drop Table


To drop or delete an existing created table and all its data, then we can use a ' DROP TABLE ' statement.

In below query 

1st line - It shows that regions table exist, using select statement

2nd line - The regions table has been a drop

3rd line - It shows that table doesn't exist (no such table: regions), which means regions table has been a drop

Enter - Select * from table_name;
SQL Query
select * from regions; DROP TABLE regions; select * from regions;
Output