62,243
社区成员




create table #t(val nvarchar(200))
insert #t select '今年过年'
union all select '今年过节'
union all select '今年过分'
union all select '今年过'
union all select '今年'
union all select '今年春节'
SELECT * FROM #t where val like '%过[年节]%'
/*
val
今年过年
今年过节
*/
select * from table where field like '%[过年节]%'