人大金仓切割逗号拼接的字符串,并使用in来查询
字符串切割STRING_TO_ARRAY
UNNEST获取一个ARRAY,然后平铺成一个表,表中的每一行都是该ARRAY中的元素。
-- 查询id是1 2 13 14的学生信息 select * from student where student_id in (select num from unnest (string_to_array('1,2,13,14',',')) as num) -- 金仓unnset函数 select unnest('{1,2,3,4}'::int[]), 1 as test