-
Notifications
You must be signed in to change notification settings - Fork 690
Update
Andrey Gershun edited this page May 28, 2015
·
11 revisions
AlaSQL supports UPDATE statement.
Syntax:
UPDATE table SET prop1 = value1, ... WHERE conditionFor example:
alasql('UPDATE cities SET population = population * 1.5 WHERE name LIKE "A%"');
alasql('UPDATE city SET population = LEN(name) * 1000000 WHERE name LIKE "M%"');© 2014-2026, Andrey Gershun & Mathias Rangel Wulff
Please help improve the documentation by opening a PR on the wiki repo