Which statement adds a new column to an existing table?

SQL Fundamentals Easy

SQL Fundamentals — Easy

Which statement adds a new column to an existing table?

Key points

  • ALTER TABLE is used to modify existing tables.
  • ADD COLUMN specifies that a new column should be added.
  • UPDATE TABLE, MODIFY TABLE, and CHANGE TABLE are not valid syntax for adding a new column.

Ready to go further?

Related questions