Mysql 为什么我的sql查询返回关键字找不到

Mysql 为什么我的sql查询返回关键字找不到,mysql,mysqli,phpmyadmin,Mysql,Mysqli,Phpmyadmin,我正在尝试检索所有没有与某个“Huissummer”(门牌号)相关的预订的房子 在本地主机phpmyadmin中执行代码时,我得到一个错误: Keyword does not recognize. (near "not" at position 25) Keyword does not recognize. (near "EXISTS" at position 29) Unexpected token. (near "(" at position 35) #1064 - You have an

我正在尝试检索所有没有与某个“Huissummer”(门牌号)相关的预订的房子

在本地主机phpmyadmin中执行代码时,我得到一个错误:

Keyword does not recognize. (near "not" at position 25)
Keyword does not recognize. (near "EXISTS" at position 29)
Unexpected token. (near "(" at position 35)

#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'LIMIT 0, 25' at line 1
也许mysql和mysqli之间有不同之处。 第一次发布问题时,希望我没有遗漏任何内容。

存在无法处理查询的问题


确保安装了phpmyadmin的4.5.2或更高版本。

查询与错误消息不匹配MySQL和mysqli执行相同的命令,因此它们之间没有区别。无论如何,从您的错误消息中我可以清楚地看到,您没有发布您执行的完整sql命令。请将您执行的命令复制到此处,除非我们无法帮助。您的Phpmyadmin版本是什么?仅在phpmyadmin 4.5.2中有相关的修正。相关问题:若要测试这是否是phpmyadmin问题,请尝试从命令行sql运行查询。@juergend
LIMIT 0,25
部分可能由phpmyadmin添加到原始查询中。
Keyword does not recognize. (near "not" at position 25)
Keyword does not recognize. (near "EXISTS" at position 29)
Unexpected token. (near "(" at position 35)

#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'LIMIT 0, 25' at line 1