Postgres w operatorze o wartościach oddzielonych przecinków

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