要想在一堆字符串中找到需要匹配的字符串,最好的方法使用关键字CHARINDEX 。
select * from bbsTopic where charindex(@name,Ttopic)>0
(其中@name为要查询的字符串,Ttopic为包含字符串的列名)
or
select * from bbsTopic where Ttopic like '%'+@name+'%'
要想在一堆字符串中找到需要匹配的字符串,最好的方法使用关键字CHARINDEX 。
select * from bbsTopic where charindex(@name,Ttopic)>0
(其中@name为要查询的字符串,Ttopic为包含字符串的列名)
or
select * from bbsTopic where Ttopic like '%'+@name+'%'