Beginner
SQL
Q35 / 100
How do you add a new column to an existing table?
Correct! Well done.
Incorrect.
The correct answer is A) ALTER TABLE table_name ADD COLUMN column_name datatype
A
Correct Answer
ALTER TABLE table_name ADD COLUMN column_name datatype
Explanation
ALTER TABLE ... ADD COLUMN adds a new column with the specified data type to an existing table.
Progress
35/100