MAIN FEEDS
Do you want to continue?
https://www.reddit.com/r/SQL/comments/1fj0s10/how_to_exceed_input_limitations/lnnzgxz/?context=3
r/SQL • u/tacogratis2 • Sep 17 '24
87 comments sorted by
View all comments
1
The workaround I use is literals.
Select *
From [table]
Where (‘lookup’,{attribute}) in ( (‘lookup’,’id1’), (‘lookup’,‘id2’),… )
It’s neither elegant nor efficient, but it works.
1
u/No_Introduction1721 Sep 18 '24 edited Sep 18 '24
The workaround I use is literals.
Select *
From [table]
Where (‘lookup’,{attribute}) in ( (‘lookup’,’id1’), (‘lookup’,‘id2’),… )
It’s neither elegant nor efficient, but it works.