gpt4 book ai didi

mysql - 非常非常困难的查询

转载 作者:太空宇宙 更新时间:2023-11-03 12:04:32 24 4
gpt4 key购买 nike

我有一个表格如下:

**A----B----C----D----F----E**

1----2----3-----4----5----6

1----2----3-----4----5----6

1----2----3-----4----5----6

现在我想做一个查询,该表到下表引导以下A,B列的字段值c,d,以下A,B列的F,E列中的值,


决赛 table

**A----B**

1----2

1----2

1----2

3----4

3----4

3----4

5----6

5----6

5----6

最佳答案

你想要一个基本的union all查询:

select a, b from table t union all
select c, d from table t union all
select f, e from table t;

关于mysql - 非常非常困难的查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27249940/

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