SQL DROP TABLE
SQL DROP TABLE:
This statement is used to delete a table definition and all data from a table.
Syntax:
DROP TABLE "table_name";
This statement is used to delete a table definition and all data from a table.
Syntax:
DROP TABLE "table_name";
EX:
for example already we have one table ,employee table. if we want delete that table just use DROP statement.
SQL>DROP TABLE STUDENTS;
Comments
Post a Comment