DROP

Definition:

To delete something in the DBMS.

Command Syntax:

DROP DATABASE database_name;
  • delete a existing database in the DBMS
DROP TABLE table_name;
  • delete a table from the using database
DROP INDEX index_name;
ALTER TABLE table_name DROP field_name/constraint_name;

'DROPing my brain.'By secondary 6 student

Comments