我用的是Grocerycrud的codeigniter,
当我尝试进行搜索时,响应是mysql error。
错误包含下一条消息: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操作符,找不到它。
有人认识这个接线员吗?
它是真的存在还是一种食饵虫?
最佳答案
有人认识这个接线员吗?
在查询中,假定BOTH
标记用作中缀布尔运算符。mysql中没有这样的定义,因此mysql查询解析器无法解析查询。
它是真的存在还是一种食饵虫?
这肯定是由生成错误的sql查询引起的错误。