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

Support Single Pipe and Single Ampersand operators #17

Open
nicklayb opened this issue Feb 14, 2024 · 0 comments
Open

Support Single Pipe and Single Ampersand operators #17

nicklayb opened this issue Feb 14, 2024 · 0 comments
Labels
enhancement New feature or request syntax Concerns fundamental syntax

Comments

@nicklayb
Copy link
Owner

It would be nice to allow and or and and logic on the fields part. Example

get all User where bank_account | withdrawn_amount | deposited_amount > 100k

which would translate in

select * from users where (bank_account > 100000 or withdrawn_amount > 100000 or deposited_amount > 100000)

And

get all User where bank_account & withdrawn_amount & deposited_amount > 100k

which would translate in

select * from users where (bank_account > 100000 and withdrawn_amount > 100000 and deposited_amount > 100000)
@nicklayb nicklayb converted this from a draft issue Feb 14, 2024
@nicklayb nicklayb added the enhancement New feature or request label Feb 14, 2024
@nicklayb nicklayb added the syntax Concerns fundamental syntax label Sep 9, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request syntax Concerns fundamental syntax
Projects
Status: Todo
Development

No branches or pull requests

1 participant