「どの構成にも貢献していない名と姓を持つ人物のリストを表示する」ように要求する SQL タスクがあります。
これが私が試みたものですが、役に立ちませんでした。
select * from (select count(a.person_id)num,a.first_name ||' '|| a.last_name name
from LABPRJ_PERSON a, LABPRJ_COMPOSITION_DETAIL w
where a.person_id=w.person_id group by last_name, a.first_name
union
select 0,a.first_name ||' '|| a.last_name name from LABPRJ_PERSON a where person_id not in (select person_id
from LABPRJ_COMPOSITION_DETAIL)) where num = 0;
どんな助けでも大歓迎です。