As a variation of "Producing Rows from the First Query or the Second Query" below code should do:
proc sql; create table want as
select * from Company where Deptid not in (select Deptid from Dept) outer union corr select * from Dept where Deptid not in (select Deptid from Company) ; quit;
The 2025 SAS Hackathon has begun!
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.