Postgres di operator dengan nilai terpisah koma

select *
from DUALS
where num in (select unnest (string_to_array('1,2', ',')::integer[]))
Matteoweb