当MySQL查询与查询条件不匹配时返回第0行

发布于 2024-11-03 04:09:31 字数 278 浏览 2 评论 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

三五鸿雁 2024-11-10 04:09:31

看起来您正在将 int 列与字符串值进行比较?看起来 MySQL 正在将字符串转换为 int,得出 0,并匹配该行。

有两个选择:

  1. 不要这样做。不要编写不兼容类型的比较。
  2. 看看 MySQL 是否有一个选项可以进入更严格的模式,在该模式下它不会自动转换不兼容的类型。

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:

  1. Don't do that. Don't write comparisons of incompatible types.
  2. See if MySQL has an option to go into a stricter mode where it doesn't convert incompatible types automatically.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文