SQL 判断字段值中是否包含某个字符串


1.模糊查询like

select * from table where field like ‘%key%’

2.charindex()

charindex(字段,字符串)>0 为包含

你可能感兴趣的:(数据库,sql)