在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
MySQL中常用到判断符号,而不等于是比较常用的符号,下面讲解以下三种不等于符号
MySQL中推荐使用<>来表示不等于,为什么呢?因为可移植性强,因为查询速度快。在leetcode上有一道题,是电影院查询的题目,题目如下: 其实非常简单,查询description非boring并且id非偶数的,将查询结果利用order by进行排序即可,但在查询description非boring的时候要用到不等于来判断,下面就是我使用三种不等于的查询时间的比拼
可以看出来<>还是快一些的,所以还是推荐使用<>来表示不等于的 多说无益,来个实例!!!一个简单地表数据: select * from user where address != "北京" select * from user where address <> "北京" select * from user where address = null select * from user where address is null select * from user where address != null 总结: select * from user where address != "北京" select * from user where address <> "北京" select * from user where address = null select * from user where address is null select * from user where address != null select * from user where address is not null 短短几条语句,三个极其常见的点,或许我们在回答的时候却不知所措,犹豫不决。 在<>和!=是等价的。在某字段不等于某值(非空的值)时,输出的结果此字段为空不输出。 is 和 is not 用于和 null 结合,我称它为不是,不是空 到此这篇关于MySQL 不等于的三种使用及区别的文章就介绍到这了,更多相关MySQL 不等于内容请搜索极客世界以前的文章或继续浏览下面的相关文章希望大家以后多多支持极客世界! |
请发表评论