2021
01-27
01-27
postgresql 查询字符串中是否包含某字符的操作
先看表结构和数据:需求:查询出manager_id中包含某些字符的数据,此处查询manager_id包含6651545956882725395,5722501350582149881的数据,SQL语句如下:SELECTt.*frombas_cm_customertwhereposition('6651545956882725395'int.manager_id)>0ORposition('5722501350582149881'int.manager_id)>0;SELECTt.*frombas_cm_customertwhereposition('6651545956882725395'int.manager_id)>0ORposition('5...
继续阅读 >