Hello guys. Is there any easy way to make `SELECT ...
# exposed
a
Hello guys. Is there any easy way to make
SELECT ... IN
but using composite key with 3 fields?
t
Could you show raw sql as an example of what you want to achieve?
a
@tapac
Copy code
SELECT *
  FROM table_name
 WHERE (key_part_1, key_part_2) IN ( ('B',1), ('C',2) );
I tried to look through the
inList
function of the SQL builder but i'm not that good at kotlin to make something similar for multiple column case
a
Thanks!