A few main points about the drop table command are:
The syntax of the drop table SQL command is:
Drop table table_name
Following is the drop table command example where we will delete our example table tbl_employee.
1
|
Drop table tbl_emploee
|
The above SQL statement will remove the tbl_employee table including all data, fields, any primary or foreign keys and other constraints.
Also see SQL create table | SQL delete
Leave A Comment?