首页 > 代码库 > mysql 中的 not like 另一种简化方法。
mysql 中的 not like 另一种简化方法。
第一种 not like 方法
select * from table where `zongbu` not like ‘%北京%‘ and `zongbu` not like ‘%上海%‘ and `zongbu` not like ‘%深圳%‘ and `zongbu` not like ‘天津‘ and `zongbu` not like ‘香港‘ and `zongbu` not like ‘沈阳‘
第二种 not like 方法
SELECT * FROM table WHERE zongbu NOT REGEXP ‘北京|上海|深圳|天津|香港|沈阳‘;
mysql 中的 not like 另一种简化方法。
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。