Correct syntax query syntax to drop a column from a table is A. DELETE COLUMN column_name; B. DROP COLUMN column_name; C. ALTER TABLE table_name DROP COLUMN column_name; D. None is correct. Answer Workspace Report Discuss Answer with explanation Answer: Option C Explanation To drop a column from an existing table, first table should be altered using ALTER TABLE statement. Workspace
Discuss about the question