如题.谢谢回答!
------解决方案--------------------
select * from EMPLOYER where charindex( 'flex ',name)> 0
------解决方案--------------------
if exists (select 1 from employer where charindex( 'FLEX ',name)> 0)
print '存在 '
else
print '不存在 '
------解决方案--------------------
你的认为也行