Login ProductsSalesSupportDownloadsAbout |
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 Thursday, November 16, 2023 at 10:39 AM | Privacy PolicySite Map © 2024 Elevate Software, Inc. All Rights Reserved Questions or comments ? E-mail us at info@elevatesoft.com |