The SQL DROP TABLE statement is used to remove a table definition and all data, indexes, triggers, constraints, and permission specifications for that table.
SYNTAX:
DROP TABLE table_name;
EXAMPLE:
DROP TABLE STUDENT;
deletes the table student from the memory.
No comments:
Post a Comment