作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
以下查询中的条件返回真结果,但我想要假结果。请给我建议。
select *
from test
where
'00160001' between '0013001' and '0023000' OR
'00200000' between '0013001' and '0023000'
最佳答案
没有前导零你会得到相同的结果。
使用整数数据类型来比较整数值。
您还可以使用 cast 即时转换值:
你的 Cast 示例:
select if( cast('00160001' as unsigned) between cast('0013001' as unsigned)
and cast('0023000' as unsigned),1,0) as test_a,
if( cast('00200000' as unsigned) between cast('0013001' as unsigned)
and cast('0023000' as unsigned),1,0) as test_b;
关于mysql - 如何在mysql中检查带有前导零的varchar,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37528367/
我是一名优秀的程序员,十分优秀!