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.

Completely removes table.
1DROP TABLE temp_data;⚠️ Cannot be undone!
1DROP TABLE IF EXISTS temp_data;No error if table doesn't exist.