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
I'm trying to convert a script from using the sqlite3 library to sqllex, and WHERE x in (...) is the one feature I seem to be missing.
e.g. there doesn't seem to be any way to do this using sqllex:
SELECT * FROM COMPANY WHERE AGE IN ( 25, 27 );
✅ Additional context
I could string together OR statements, but that's not ideal.
The text was updated successfully, but these errors were encountered:
============== TEMPLATE ==============
✅ Describe your idea or issue
I'm trying to convert a script from using the sqlite3 library to sqllex, and
WHERE x in (...)
is the one feature I seem to be missing.e.g. there doesn't seem to be any way to do this using sqllex:
SELECT * FROM COMPANY WHERE AGE IN ( 25, 27 );
✅ Additional context
I could string together OR statements, but that's not ideal.
The text was updated successfully, but these errors were encountered: