Answers for "postgresql where in with string comma separated"

SQL
0

postgres in operator with comma separated values

select *
from DUALS
where num in (select unnest (string_to_array('1,2', ',')::integer[]))
Posted by: Guest on September-24-2020

Code answers related to "postgresql where in with string comma separated"

Code answers related to "SQL"

Browse Popular Code Answers by Language