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
Also: useful as a workaround for no tuple support for inSet. E.g., replacing "select * where (x,y) in ( (1,2), (4,5) )" with "where (x=1 && y=2) or (x=4 && y=5)".
Producing a expresion while
where (exp) or (exp) or (exp)
is not obvious. It's a singlefilter
call, but what do you put in the filter body?Example: https://github.com/d6y/list-of-tuples
Might make a good advanced question, or a trick to put in. Perhaps a section/chapter/"case study" on dynamic queries with #34
The text was updated successfully, but these errors were encountered: