PURGE
Example
Section titled “Example”DROP TABLE IF EXISTS employee PURGE;Output
Section titled “Output”Query OK, 0 rows affected, 1 warning (0.00 sec)Explanation
Section titled “Explanation”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.
Example
Section titled “Example”DROP TABLE employees PURGE;Output
Section titled “Output”Table dropped.Explanation
Section titled “Explanation”In the provided SQL statement, DROP TABLE employees PURGE; indicates the removal of the ‘employees’ table. The PURGE keyword in the DROP statement completely removes the table from the database, making recovery via the recycle bin impossible.