当前位置: 代码迷 >> 综合 >> postgre 数据库 regexp_split_to_array 函数的应用
  详细解决方案

postgre 数据库 regexp_split_to_array 函数的应用

热度:41   发布时间:2023-09-05 17:50:40.0

环境:字段中以逗号分隔符存放的数据,如“a,b,c”;
搜索条件为多选,如选择a,c
解决:

regexp_split_to_array(字段名,',') && array['a','c']