gpt4 book ai didi

sql - 获取多行的查询需要逗号分隔的输出

转载 作者:行者123 更新时间:2023-12-02 08:44:54 25 4
gpt4 key购买 nike

查询:

select o.candidateid 
from onboardingcandidates o, candidatedetails c
where o.candidateid=c.candidateid
and o.JOININGSTATUS='0091'
and to_date(o.joiningdate)=to_date(sysdate+5);

Output:

cand1
cand2
cand3
cand62

Required Output:

cand1, cand2, cand3, cand62

最佳答案

使用 LISTAGG

SELECT LISTAGG(o.candidateid) WITHIN GROUP () .....

关于sql - 获取多行的查询需要逗号分隔的输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13181692/

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