You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 7, 2021. It is now read-only.
But each opererand is executed like if they where seperated by a «AND» operator.
In SQL, this would results in the following WHERE clause: title LIKE 'Harry Potter%' AND price < 15.30.
I would like to be able to combine two operands with an «OR» operator. Something like ['or', ['title', 'eq', 'A title'], ['price', 'lt', 15.30]]would mean : Give me the list of all books that have 'A title' or that the price is less than 15.30.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
A query can accepts many operands, like the following example:
But each opererand is executed like if they where seperated by a «AND» operator.
In SQL, this would results in the following WHERE clause:
title LIKE 'Harry Potter%' AND price < 15.30
.I would like to be able to combine two operands with an «OR» operator. Something like
['or', ['title', 'eq', 'A title'], ['price', 'lt', 15.30]]
would mean : Give me the list of all books that have 'A title' or that the price is less than 15.30.The text was updated successfully, but these errors were encountered: