data have;
input id sal;
cards;
101 1000
102 2000
103 1000
104 3000
105 3000
106 4000
;
How would i find 3rd max sal from above data using sql ??
It is simpler to use a datastep here:
data have;
input id sal;
cards;
101 1000
102 2000
103 1000
104 3000
105 3000
106 4000
;
run;
proc sort data=have;
by sal;
run;
data want;
set have;
if _n_=3;
run;
Hey, stop posting the same question in different forums, pls.
Indeed, other post here:
https://communities.sas.com/t5/General-SAS-Programming/proc-sql/m-p/246594
Close this one.
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.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.