sqlserver中 字段内容做in条件用到方法:CHARINDEX(value,situation) 列变行显示用到:stuff 详情自行查找. 例子: stuff((select ','+name from SYS_DICT where dictcode = 'SITUATION' and CHARINDEX(value,situation)>0 FOR xml path('')), 1, 1, '') as situationValue…
字段 like ‘匹配串1’or 字段 like ‘匹配串2’or ... 有如下简写方式 oracle: select * from tablex where REGEXP_LIKE(字段名, '(匹配串1|匹配串2|...)') ;//全模糊匹配 select * from tablex where REGEXP_LIKE(字段名, '^(匹配串1|匹配串2|...)') ";//右模糊匹配 select * from tablex where REGEXP_LIKE(字段名, '(匹…
写oracle sql时有时候会有 and (字段 like ‘匹配串1’or 字段 like ‘匹配串2’or ...)这样的情况出现,下面提供一个简洁点的解决方案: and REGEXP_LIKE(字段名, '(匹配串1|匹配串2|...)') //全模糊匹配 and REGEXP_LIKE(字段名, '^(匹配串1|匹配串2|...)') ";//右模糊匹配 and REGEXP_LIKE(字段名, '(匹配串1|匹配串2|...)$') ";//左模糊匹配 案例: 某天客户有一…