-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Labels
Description
Use a more SQL-like syntax for update operators:
x INCREMENT/DECREMENT y->x = x +/- yxis the name of the columnyis the value to increment/decrement- Consider
*and/as (invalid) operators - Do not consider more than 2 clauses (i.e. a + b)
x ASSIGN y->x = yxis the name of the columnyis the value to assign to x- Alternatively,
ycould the name of another column
- Alternatively,
x ENABLE/DISABLE->x = True/Falsexis the name of the columnTrue/Falseare constants