DROP Table
DROP TABLE students; removes the table and its data. DROP TABLE IF EXISTS students; is the script form. Child tables with FOREIGN KEY to students must be dropped first or FKs removed.
Trap — DROP TABLE when you meant DELETE FROM. Trap: dropping in the wrong database.
On the example next to this theory: DROP Table: create two demo rows, then SELECT qty >= 2 ordered. Say which labels come back.
Exam tip
DROP TABLE IF EXISTS students; — structure and data both go.