gpt4 book ai didi

sql - 如何从一行 SQL 中创建两行

转载 作者:行者123 更新时间:2023-12-05 03:12:26 24 4
gpt4 key购买 nike

我是否使用选择查询从一行中生成两行?

举个例子

  create table timecards 
(employeeid nvarchar(10) not null,
regulartime int null,
overtime int null)

insert into timecards
values ('A', 8, 1)

我想要的结果是

 A,8
A,1

最佳答案

很多方法....怎么样

select employeeid, regulartime as somekindatime
from timecards
union all
select employeeid, overtime
from timecards

ALL 关键字只是通知 SQL 我们不想排序和消除重复项。除非您真的想消除重复的行,否则可以节省时间。

关于sql - 如何从一行 SQL 中创建两行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33811372/

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