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;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
Get started using SAS Studio to write, run and debug your SAS programs.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.