gpt4 book ai didi

数据库;来自不同类别的列表

转载 作者:行者123 更新时间:2023-11-30 21:59:19 25 4
gpt4 key购买 nike

假设我有下表,名为 test:

enter image description here

我需要选择以获得以下内容:

enter image description here

有人知道如何使用 SQL 来做到这一点吗?

最佳答案

你可以使用UNION ALL:

select category,
item
from test
where category is not null

union all

select category2 as category,
item
from test
where category2 is not null
order by item

Demo

关于数据库;来自不同类别的列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43950108/

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