我正在尝试返回包含三个组件的课程 ID 列表:作业、讨论和教学大纲。我希望我的结果在每个课程 ID 中只有一行,用 Y 或 N 表示这些课程是否有作业、讨论和教学大纲。但是,对于给定的课程 ID,我得到了 Y 和 N 的每个唯一组合。
如何每个课程 ID 只返回一行?
select distinct cm.course_id as Course,
case
when exists (select 1 where gt.name ilike 'Assignment%')
then 'Y'
else 'N'
end as are_there_assignments,
case
when exists (select 1 where gt.name ilike 'Discussion%')
then 'Y'
else 'N'
end as are_there_discussions,
case
when exists (select 1 where ct.label ilike '%syllabus%' )
then 'Y'
else 'N'
end as is_there_a_syllabus
from course_main cm
left join course_course cc
on cm.pk1 = cc.crsmain_pk1
inner join gradebook_main gm
on cm.pk1 = gm.crsmain_pk1
inner join gradebook_type gt
on gm.gradebook_type_pk1 = gt.pk1
inner join course_toc ct
on cm.pk1 = ct.crsmain_pk1
where cc.crsmain_parent_pk1 is NULL
and (cm.course_id ilike '%SPF-2020-C%'
or cm.course_id ilike '%SPF-2020-S%'
or cm.course_id ilike '%SP2-2020-C%'
or cm.course_id ilike '%SP2-2020-S%'
or cm.course_id ilike '%SP2-2020-A%'
or cm.course_id ilike '%SPF-2020-A%')
order by cm.course_id;
这是我目前的结果: