我对mariadb 10.1进行了SQL查询
但是,我将mariadb 10.1升级到10.3,但是发生了ER_PARSE_ERROR和SQL语法错误。
此错误是:
code: 'ER_PARSE_ERROR',
errno: 1064,
sqlMessage:
'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 \')\' at line 1',
sqlState: '42000',
index: 0,
sql: 'select * from user where identifier in ()' }
怎么了?
我一直在寻找,但是我不知道怎么了。
答案 0 :(得分:1)
它似乎不喜欢空白列表。尝试更改查询。
select * from user where identifier in (null)
空值将不匹配任何值(甚至另一个空值),因此这实际上是您似乎想要的。