SQL Drop Table
The DROP TABLE query is used to drop an existing table on a database. Syntax DROP TABLE tablename; Note: You must be very careful when using this command because once the table is deleted all the information in that table will also be permanently lost. Example DROP TABLE students; After using this query the table will be deleted in the database.
View On WordPress




















