我要查询B表内的C字段中所有没有[的数据,代码怎么写?我要查询B表内的C字段中所有没有[的数据,代码怎么写?已经解决答案是:select * from B where C not like '%[[]%'[为特殊符号,查询时需要转义
select * from B where not(c like '%[%')