Hi All,
Could someone tell me how can I further deduplicate it (as per my knowledge full join combines the result of both left and right outer join) Also, please help me with the sequence/order of SQL syntax as I tried to execute the below program, but it didn't work . Need to know where should I terminate each statement and in which order, should I use order by syntax first or group by or where condition?
proc sql; create table ph as select* from sashelp.class where age>14 order by weight desc group by sex; quit;