Mysql 在应该出现语法错误时却没有给出语法错误

发布于 2024-11-17 03:38:20 字数 353 浏览 2 评论 0原文

我正在尝试使用以下查询

SELECT COUNT(*) 
  FROM users` 
  WHERE email = '[email protected]'

这不会给我语法错误(注意在表名称的开头不包含 ` 字符)。尽管记录在数据库中不存在,但总是给我计数为1。

如果我从查询中删除 COUNT,我会收到错误消息。

希望这不是 mysql 的错误。

I am trying with following query

SELECT COUNT(*) 
  FROM users` 
  WHERE email = '[email protected]'

This is not giving me syntax error (notice not include ` character at the starting of table name). And always gives me count as 1, although record in not there in db.

I will get the error if i remove COUNT from the query.

Hope this is not a bug in mysql.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

我也只是我 2024-11-24 03:38:20

反引号似乎注释掉了该行的其余部分。

我不能说为什么,但我已经测试过它(通过 phpMyAdmin)并且确实如此。

The backtick seems to be commenting out the rest of the line.

I can't say why but I have tested it (through phpMyAdmin) and that it the case.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文