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.
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.