In SQL, what statement is used to add a new record to a table?

  • INSERT INTO
  • ADD RECORD
  • CREATE ROW
  • UPDATE TABLE
The INSERT INTO statement is used to add a new record to a table in SQL. It allows you to specify the table name and provide values for the columns associated with the new record. The other options are not standard SQL syntax for adding new records.
Add your answer
Loading...

Leave a comment

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