I need to sum the hits of each player and then show the max one. This is my code, but I has syntax problem on this nested sql, can someone help to figure out?
proc sql;
title2"Part 2d";
select distinct PlayerID, min(YearID) label="First Year", sum(H) as Total_Hits
group by PlayerID
where Total_Hits=max(Total_Hits);
quit;
title;
proc sql;
select *
from (
select sex,sum(height) as total
from sashelp.class
group by sex
)
having total=max( total);
quit;
What nested SQL?
I can see off the bat that where should be having.
proc sql;
select *
from (
select sex,sum(height) as total
from sashelp.class
group by sex
)
having total=max( total);
quit;
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.