当前位置: 代码迷 >> Sql Server >> 查询字串如何加过滤条件,就是查询包含特定字串的记录
  详细解决方案

查询字串如何加过滤条件,就是查询包含特定字串的记录

热度:22   发布时间:2016-04-27 15:18:12.0
查询字串怎么加过滤条件,就是查询包含特定字串的记录
比如一个字段是文本型,现在需要查找包含 “abcdefg”这样字串的记录。sql语句怎么写?

------解决方案--------------------
select * from tb where 字段 like '%abcdefg%'

select * from tb where charindex('abcdefg' , 字段) > 0 

select * from tb where cast(字段 as varchar) like '%abcdefg%'

select * from tb where charindex('abcdefg' , cast(字段 as varchar)) > 0
  相关解决方案