我正在使用CodeIgniter和GroceryCrud, 当我要进行搜索时,响应是mysql错误。
错误包含下一条消息:
Error Number: 1064</p><p>You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'both last_action_date LIKE '%11%'
both package_id LIKE '%11%'
both at line 6
这是相关查询的一部分
...FROM (`users`)
LEFT JOIN `users` as j9e598a93 ON `j9e598a93`.`id` = `users`.`accountant_id`
LEFT JOIN `users` as j0b70ca4c ON `j0b70ca4c`.`id` = `users`.`affiliate_id`
WHERE `id` LIKE '%11%'
both `last_action_date` LIKE '%11%'
both `package_id` LIKE '%11%'
我不熟悉“BOTH”mysql运算符,但我找不到它。
有谁知道这个运营商? 是真的存在还是GroceryCrud错误?
答案 0 :(得分:2)
有谁知道这个运营商?
在您的查询中,假定BOTH
标记用作中缀布尔运算符。在mysql中没有这样的定义,因此mysql查询解析器无法解析查询。
它真的存在还是GroceryCrud错误?
这肯定是由生成错误的SQL查询引起的错误。
答案 1 :(得分:0)
这似乎是一个GroceryCrud错误。 BOTH
是一个保留的mysql单词。