Skip to content

PURGE

DROP TABLE IF EXISTS employee PURGE;
Query OK, 0 rows affected, 1 warning (0.00 sec)

The SQL statement DROP TABLE IF EXISTS employee PURGE; will remove the ‘employee’ table from the database, and the PURGE keyword will make sure to permanently remove it, bypassing the recycle bin.