SQL Server, Primavera P6 Professional
select * -- wbs
from PROJWBS p left join task t on p.proj_id = t.proj_id and p.wbs_id = t.wbs_id
and t.task_code is null
order by task_code;
SQL Server, Primavera P6 Professional
select * -- wbs
from PROJWBS p left join task t on p.proj_id = t.proj_id and p.wbs_id = t.wbs_id
and t.task_code is null
order by task_code;