Mysql 数据查询语句中between and 是包含边界值的Mysql的sql语句中可以使用between来限定一个数据的范围,例如:select * from user where
Mysql 数据查询语句中between and 是包含边界值的
Mysql的sql语句中可以使用between来限定一个数据的范围,例如:
select * from user where userId between 5 and 7;
查询userId为5、6,7的user,userId范围是包含边界值的,也等同如下查询:
select * from user where userId >= 5 and userId <= 7;
很多地方都提到between是给定的范围是大于等第一值,小于第二个值,其实这是不对的。此前我一直也是这么认为,通过实验,结论是包含两边的边界值,如果实在拿不准,可以采用>= 、<=的方式来指定条件。
另外 not between的范围是不包含边界值。
以上就是mysql between and 包含边界吗的详细内容,更多请关注编程网其它相关文章!
--结束END--
本文标题: Mysql数据查询语句中的between and包含边界吗
本文链接: https://lsjlt.com/news/37755.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-10-23
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0