Which of the following SQL statements is used to add a new column to an existing table?

  • ALTER TABLE ADD COLUMN
  • CREATE TABLE
  • INSERT INTO
  • UPDATE TABLE SET
The SQL statement used to add a new column to an existing table is ALTER TABLE ADD COLUMN. This statement allows you to modify the structure of an existing table by adding a new column, specifying its name, data type, and any additional constraints.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *