MySQL Database
MySQL Drop Table
Remove a table and all of its rows.
Warning: DROP TABLE removes the table structure and data permanently.
DROP TABLE products;Use DROP TABLE IF EXISTS products; when a missing table should not cause an error.
Continue learning
