34,838
社区成员




select * from tb
where CHARINDEX(','+LTRIM(autoid)+',' ,',1,2,3,4,5,')>0
select * from table where CHARINDEX(','+LTRIM(autoid)+',' ,',1,2,3,4,5,')>0
select * from table where charindex('1,2,3,4,5',autoid)>0
select * from table where autoid in(1,2,3,4,5)