Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 10.0.1 » SQL Anywhere Server - SQL Usage » Adding, Changing, and Deleting Data » Adding data using INSERT

Adding data using INSERT Next Page

Inserting values into all columns of a row


The following INSERT statement adds a new row to the Departments table, giving a value for every column in the row:

INSERT INTO Departments
VALUES ( 702, 'Eastern Sales', 902 );
Notes