Skip to main content

Select Statements

The following syntax diagram outlines the supported SELECT syntax:

Insert Statements

The INSERT statement specifies the columns to be inserted and the new column values. You can specify the column values in a comma-separated list in the VALUES clause:

Update Statements

To issue an UPDATE query, provide a comma-separated list of columns and new column values as name-value pairs in the SET clause, as shown below:

Delete Statements

The DELETE statement requires:
  • The table name in the FROM clause
  • The primary key for the row in the WHERE clause
This format is shown below:

Stored Procedures

Stored procedures from Virtual SQL Server can be executed as follows: