mysql union all 如何排序
时间: 2023-12-27 21:21:15 浏览: 67
MySQL如何使用union all获得并集排序
5星 · 资源好评率100%
可以在 UNION ALL 后面加上 ORDER BY 子句来对结果进行排序。例如:
```
SELECT column1 FROM table1
UNION ALL
SELECT column1 FROM table2
ORDER BY column1 DESC;
```
这样就会按照 column1 的降序排列结果。
阅读全文