Skip
Arish's avatar

281. DROP TABLE


DROP TABLE

Completely removes table.

sql
1DROP TABLE temp_data;

⚠️ Cannot be undone!

IF EXISTS

sql
1DROP TABLE IF EXISTS temp_data;

No error if table doesn't exist.