当MySQL查询与查询条件不匹配时返回第0行
我有一个带有主键的表:
类型:INT 长度:11 默认值:NULL 额外:auto_increment
该表包含 3 条记录 - 0、1 和 4
当我尝试...
SELECT the_key FROM the_table WHERE the_key='someRandomString'
...它返回 1 条记录(主键 0)
我可以用 PHP is_numeric() 解决它,但为什么它不返回 0 条记录?
I have a table with a primary key:
Type:INT Length:11 Default:NULL Extra:auto_increment
The table contains 3 records - 0, 1 and 4
When I try...
SELECT the_key FROM the_table WHERE the_key='someRandomString'
...it returns 1 record (primary key 0)
I can solve it with a PHP is_numeric() but why doesn't it return 0 records?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来您正在将 int 列与字符串值进行比较?看起来 MySQL 正在将字符串转换为 int,得出 0,并匹配该行。
有两个选择:
It looks like you're comparing an int column against a string value? It looks like MySQL is converting the string to an int, coming up with 0, and matching that row.
Two options: