Login ProductsSalesSupportDownloadsAbout |
Home » Technical Support » ElevateDB Technical Support » Product Manuals » ElevateDB Version 2 SQL Manual » DML Statements » UPDATE |
UPDATE <TableName> SET <ColumnName> = <Value> [,<ColumnName> = <Value>]) [WHERE <FilterCondition>]
-- This UPDATE statement updates -- the customer with the customer # of -- 8354 and sets their LastOrdered column -- to today UPDATE Customers SET LastOrdered = CURRENT_DATE WHERE CustNo = 8354 -- This UPDATE statement updates all of -- the rows in the Customers table and sets -- their SentMailer column to False UPDATE Customers SET SentMailer = FALSE
Deviation | Details |
Positioned Updates | ElevateDB does not support positioned updates. Instead ElevateDB supports using a cursor-based UPDATE statement directly on the current position of a cursor. |
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 |