查找列名等於某一字元串: 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%'