The SQL command used to permanently remove a table from the database is ________.
- DELETE TABLE
- DROP TABLE
- REMOVE TABLE
- TRUNCATE TABLE
The SQL command "DROP TABLE" is used to permanently remove a table and all associated data from the database. It should be used with caution as it cannot be undone and leads to the loss of all data in the table.
Loading...