Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

购物车功能无法正常调用问题及解决办法 #54

Open
volleymember opened this issue Feb 5, 2023 · 0 comments
Open

购物车功能无法正常调用问题及解决办法 #54

volleymember opened this issue Feb 5, 2023 · 0 comments

Comments

@volleymember
Copy link

购物车功能调用失败,原因是GetOrderGroup的SQL语句书写错误。
原句:select order_id from orders where user_id = ? group by order_id
修改:select order_id from (select order_id from orders where user_id = ? group by order_id ) a order by order_id desc
报错原因是SQL语句在group by分组后不能使用desc进行排序。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant