Приношу извинения за то, что я действительно новичок в SQL, и я пытаюсь создать код, который будет извлекать все значения в одной строке с их одинаковыми соответствующими идентификаторами (fundno и name fund).
Я хочу, чтобы все значения были в одной строке и не разделялись.
выберите
b.fundno,
a.fund_name,
a.fund_type As Type,
a.fund_status_code As Status,
a.category_code as 'CatCode',
convert(char(10),b.prosp_date,101)as 'Prospectus_date',
(case when b.prosp_code = 'GRMFEE' then b.prosp_value end) as GrMgmt,
(case when b.prosp_code = 'GR12B1' then b.prosp_value end) as Gr12b1,
(case when b.prosp_code = 'GROTHR' then b.prosp_value end) as Groth,
(case when b.prosp_code = 'GREXP' then b.prosp_value end) as Grtotal,
(case when b.prosp_code = 'NETMFEE' then b.prosp_value end) as Netmgmt,
(case when b.prosp_code = 'NET12B1' then b.prosp_value end) as Net12b1,
(case when b.prosp_code = 'NETOTHR' then b.prosp_value end) as Netoth,
(case when b.prosp_code = 'EXPLIMIT' then b.prosp_value end) as Nettotal,
(case when b.prosp_code = 'NETWVR' then b.prosp_value end) as Waiver
from
fund a,
prospectus_breakdown b
where a.category_code in(1,13,16,18,19,20,27,31)
and b.fundno = a.fundno
and b.prosp_date=(select max(prosp_date)
from prospectus_breakdown b
where b.fundno=a.fundno)
order by a.fund_name
Что выглядит так:
https://imgur.com/a/dqPRQ6X
Может кто-нибудь помочь мне исправить код? Буду благодарен за любую помощь. Спасибо !!