SQL里怎么用变量实现模糊查询?(难)

2024年12月03日 23:39
有3个网友回答
网友(1):

首先要保证变量类型与你的列名类型相同!!

你测试看看!
declare @test varchar(20)

set @test='a'

select * from biao where data2 like '%'+@test+'%'

网友(2):

select * from bbsTopic where Ttopic like @name
select * from bbsTopic where Ttopic like '%'+@name+'%'

网友(3):

select * from bbsTopic where Ttopic like '%'||@name||'%';