create table #temp(code varchar(20))
x09x09x09x09x09x09insert into #temp select '1'
x09x09x09x09x09x09insert into #temp select '4'
x09x09x09x09x09x09insert into #temp select '3'
x09x09x09x09x09x09insert into #temp select '2'
x09x09x09x09x09x09
x09x09x09x09x09x09declare @str varchar(20)='''1'',''2'',''3'''
x09x09x09x09x09x09declare @lsql varchar(100)x09x09x09x09x09x09
x09x09x09x09x09x09set @lsql = 'select * from #temp where code in ('+@str+')'
x09x09x09x09x09x09exec (@lsql)