Mysql 在应该出现语法错误时却没有给出语法错误
我正在尝试使用以下查询
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
反引号似乎注释掉了该行的其余部分。
我不能说为什么,但我已经测试过它(通过 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.