We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use a more SQL-like syntax for update operators:
x INCREMENT/DECREMENT y
x = x +/- y
x
y
*
/
x ASSIGN y
x = y
x ENABLE/DISABLE
x = True/False
True/False
The text was updated successfully, but these errors were encountered:
JPDSousa
No branches or pull requests
Use a more SQL-like syntax for update operators:
x INCREMENT/DECREMENT y
->x = x +/- y
x
is the name of the columny
is the value to increment/decrement*
and/
as (invalid) operatorsx ASSIGN y
->x = y
x
is the name of the columny
is the value to assign to xy
could the name of another columnx ENABLE/DISABLE
->x = True/False
x
is the name of the columnTrue/False
are constantsThe text was updated successfully, but these errors were encountered: