Detailed explanation and options for the selected question.
Which SQL statement is used to remove a table from a database?
A.
DROP TABLE
B.
DELETE FROM
C.
TRUNCATE TABLE
D.
ALTER TABLE
Explanation:
DROP TABLE removes a table and its data from the database. DELETE FROM removes rows, TRUNCATE TABLE clears data but keeps the table, and ALTER TABLE modifies a table.