-
Notifications
You must be signed in to change notification settings - Fork 33
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
[FEATURE] Add "between" expression to PPL #679
Comments
@salyh Can u plz review and validate this issue ? |
It's a valid request albeit its only syntactic sugar. Spark SQL does have a BETWEEN function so it makes sense. @A-Gray-Cat @YANG-DB I suggest to implement it like |
@salyh agree lets proceed with the suggested syntax |
Is your feature request related to a problem?
When doing comparisons for a range, it will be very convenient to have a between command, e.g.
Instead of writing,
... | where datetime >= '2024-09-10' and datetime <= '2024-09-15'
, it can be written as... | where datetime between '2024-09-10' and '2024-09-15'
.What solution would you like?
Add the "between" expression. This is a nice to have.
What alternatives have you considered?
A clear and concise description of any alternative solutions or features you've considered.
Do you have any additional context?
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered: