mysql查询条件中括号不匹配报错排查
在你提供的代码中,排查到查询条件的括号不成对,导致出错。具体来说,有6个左括号(“)和5个右括号()),存在一个括号不匹配的情况。
原代码:
select p.* from product as p , product_product_category as c where p.deleting = 0 and ( p.product_category_id in ( 1, 2 ) or (p.product_id = c.product_id and c.product_category_id in ( 1, 2 ) )
登录后复制
根据你的表关联方式,正确的代码应该是:
SELECT p.* FROM product AS p , product_product_category AS c WHERE p.deleting = 0 AND ( p.product_category_id IN ( 1, 2 ) OR (p.product_id = c.product_id AND c.product_category_id IN ( 1, 2 )) )
登录后复制
在修改查询条件后,括号已经成对匹配,错误应该得到解决。
© 版权声明
文章版权归作者所有,未经允许请勿转载。
【小浪云服务商 - 服务器12元起 - 挂机宝5元起】
THE END
暂无评论内容