create table #t(CITY varchar(50))
insert #t select '(''西安'',''北京'',''天津'',''南京'')'
insert #t select '(''北京'',''天津'',''南京'')'
select * from #t where charindex('西安',city)>0drop table #t