我有一个 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;
任何帮助将不胜感激。