gpt4 book ai didi

MySQL 在另一列下面追加一列

转载 作者:行者123 更新时间:2023-12-01 00:08:56 26 4
gpt4 key购买 nike

只想做这个 Append one column below another在 MySQL 中选择

表格:

id | x | y |
1 | a | b |
2 | c | d |

我想要得到的结果:

id | x |
1 | a |
1 | b |
2 | c |
2 | d |

最佳答案

您可以使用union all。如果您关心顺序:

select id, x
from ((select id, x, 1 as n from t) union all
(select id, y, 2 as n from t)
) xy
order by id, n;

如果您不关心顺序,那么 union all 就足够了。

关于MySQL 在另一列下面追加一列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43541905/

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