![]() | ![]() Products ![]() ![]() ![]() ![]() |
Home » Technical Support » ElevateDB Technical Support » Product Manuals » ElevateDB Version 2 SQL Manual » DML Statements » INSERT |
INSERT INTO <TableName> [(<ColumnName> [,<ColumnName>])] VALUES (<Value> [,<Value>])| <QueryExpression> <QueryExpression> = query with the same number of columns as the INSERT statement and columns that are type-compatible with the INSERT columns
-- This INSERT statement inserts a new -- row into the Orders table INSERT INTO Orders (OrderNo, ItemNo, QtyOrdered, UnitPrice) VALUES (1200, 23478, 10, 30.00) -- This INSERT statement inserts all of -- the Orders rows for the year 2006 into -- the ArchivedOrders table INSERT INTO ArchivedOrders SELECT * FROM Orders WHERE OrderDate BETWEEN DATE '2006-01-01' AND DATE '2006-12-31'
Deviation | Details |
DEFAULT VALUES | ElevateDB does not support the DEFAULT VALUES clause. |
This web page was last updated on Friday, January 31, 2025 at 08:42 AM | Privacy Policy![]() © 2025 Elevate Software, Inc. All Rights Reserved Questions or comments ? ![]() |