这个问题在这里已经有答案了:
mysql中in子句参数列表为空(9个答案)
两年前关门了。
我对mariadb 10.1进行了sql查询
但是,我将mariadb 10.1升级到10.3,但是出现了er\u parse\u错误和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 ()' }
怎么了?
我一直在找,但不知道怎么了。
1条答案
按热度按时间qlckcl4x1#
它似乎不喜欢空名单。尝试更改查询。
空值不会匹配任何值(甚至另一个空值),所以这实际上是您想要的。