select * from 表 where 列名 like “%某值%”;
select * from 表名 where 列名 like '%某个值%';
select * from table1 where charindex('aa',column)>0 and charindex('bb',column)>0 and charindex('dd',column)>0