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
I see not way to introduce NOT operator (not to be confused with NOT IN) in the WHERE part, otherwise than rewriting the query. Example:
NOT
NOT IN
WHERE
WHERE NOT (Industry = 'Agriculture' OR Industry = 'Biotechnology')
cannot be built in this framework; we need to rewrite it as:
WHERE Industry != 'Agriculture' AND Industry != 'Biotechnology'
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I see not way to introduce
NOT
operator (not to be confused withNOT IN
) in theWHERE
part, otherwise than rewriting the query.Example:
cannot be built in this framework; we need to rewrite it as:
The text was updated successfully, but these errors were encountered: