Drop Table Usage in SQL

Itacen Sabacok | Jun 11, 2022

DROP TABLE statement is used to drop an existing table in a database.

WARNING

Be careful before dropping a table because it will delete table itself so all data/record will be gone.

1-- syntax
2DROP TABLE tablename;
3
4-- example
5DROP TABLE engineer;