日期:2014-05-17 浏览次数:20472 次
select * from tablename where 原料 like '%钢材%'
exec('select * from tb where 原料 in (' + @str + ')')
create table tb(name nvarchar(30))
insert into tb
select N'钢材45#' union select N'钢圆型材30+3'
union select N'fg' union select N'木材'
union select N'钢铁'
select * from tb where PATINDEX(N'%[钢材]%',name)>0
/*
name
------------------------------
钢材45#
钢铁
钢圆型材30+3
木材
(4 行受影响)