![]() | ![]() Products ![]() ![]() ![]() ![]() |
Home » Technical Support » DBISAM Technical Support » Product Manuals » DBISAM Version 4 Manual for RAD Studio XE (Delphi) » SQL Reference » UPDATE Statement |
UPDATE table_reference [AS correlation_name | correlation_name] [EXCLUSIVE] SET column_ref = update_value [, column_ref = update_value...] [FROM table_reference [AS correlation_name | correlation_name] [EXCLUSIVE] [[INNER | [LEFT | RIGHT] OUTER JOIN] table_reference [AS correlation_name | correlation_name] [EXCLUSIVE] ON join_condition] [WHERE predicates] [COMMIT [INTERVAL commit_interval] [FLUSH]] [NOJOINOPTIMIZE] [JOINOPTIMIZECOSTS] [NOWHEREJOINS]
SET column_ref = update_value [, column_ref = update_value...]
UPDATE orders SET ShipToContact=Customer.Contact FROM orders LEFT OUTER JOIN customer ON customer.custno=orders.custno
UPDATE orders o SET ShipToContact=c.Contact FROM orders o LEFT OUTER JOIN customer c ON c.custno=o.custno
WHERE predicates
UPDATE SalesInfo SET TaxRate=0.0825 WHERE (State='CA')
COMMIT [INTERVAL nnnn] [FLUSH]
NOJOINOPTIMIZE
JOINOPTIMIZECOSTS
NOWHEREJOINS
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 ? ![]() |