查找列名等于某一字符串:
select * from table where column like ‘%string%’
查找列名不等于某一字符串
select * from table where column not like ‘%string%’
查找列名等于某一字符串:
select * from table where column like ‘%string%’
查找列名不等于某一字符串
select * from table where column not like ‘%string%’