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
Hi,
I am converting SQL WHERE clause to TaffyDB queries. I think I have found one possible combination that cannot be implemented into a TaffyDB query.
A query like:
(Type='Food' OR Amount=27) AND (Currency='INR' OR Amount=26)
Hi,
I am converting SQL WHERE clause to TaffyDB queries. I think I have found one possible combination that cannot be implemented into a TaffyDB query.
A query like:
can be converted to TaffyDB query as:
the
[...]
is used to group two filters in an 'OR' condition and 'comma' separation works like 'AND' in this case.However query like:
Cannot be converted to TaffyDB query, since there is no specific syntax for 'AND' like 'OR' in
TaffyDB.
The text was updated successfully, but these errors were encountered: