sql如下:
select column1 from table where column1 like '%this%'我想查询出column1中含有this%的数据应该怎么写?(只含this的也要剔除掉)同样的,我想查询出column1中含有this_的数据怎么写?select column1 from table where column1 like '%this%%'会把所有含有this的也搜索出来谢谢:)