1、字符串的155,111转为数字类型

select *
from table_name
where id = 140052
  and colum && array ['155','111']::integer[];

2、直接就是数字数组查询

select *
from table_name
where id = 140052
  and colum && array [155,111];
文章目录