![]() | ![]() Products ![]() ![]() ![]() ![]() |
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 Friday, January 31, 2025 at 08:42 AM | Privacy Policy![]() © 2025 Elevate Software, Inc. All Rights Reserved Questions or comments ? ![]() |