Multiple choice technology databases Which key word is used to remove a table from the database Delete Truncate Remove Drop Reveal answer Fill a bubble to check yourself D Correct answer Explanation DROP TABLE is the SQL command that removes a table definition and all its data from the database. DELETE removes only data, TRUNCATE removes all data but keeps the table structure, and REMOVE is not a standard SQL command.