gpt4 book ai didi

mysql - 这种格式有什么问题

转载 作者:行者123 更新时间:2023-12-01 00:32:55 25 4
gpt4 key购买 nike

SELECT 
....
GROUP BY
c.city_id

ORDER BY p.name desc
UNION
SELECT
...

GROUP BY
c.city_id, p

错误 1221 (HY000):UNION 和 ORDER BY 的使用不正确

有没有办法拥有这种格式,因为我希望顶部查询有一个 orderby 我是否需要在底部查询上有相同的 orderby

最佳答案

最后是ORDER By

select *
from..
union all
select *
from...
order by....

如果你想让第一个查询首先出现,你可以做什么

select *, 1 as SortOrder
from..
union all
select * ,2 as SortOrder
from...
order by SortOrder,<other columns>...

关于mysql - 这种格式有什么问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3586037/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com