Skip to content
New issue

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

Add NOT conditional operator #53

Open
TrangOul opened this issue Aug 12, 2024 · 0 comments
Open

Add NOT conditional operator #53

TrangOul opened this issue Aug 12, 2024 · 0 comments

Comments

@TrangOul
Copy link

TrangOul commented Aug 12, 2024

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:

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'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant