BookmarkSubscribeRSS Feed
alwaz_searching
Calcite | Level 5
Hi,

I want to create a variable incrementing with the value 1 in the Proc Sql Select clause Select statement....

Can anyone help me out in this...?
2 REPLIES 2
SPR
Quartz | Level 8 SPR
Quartz | Level 8
Hello Alwaz,

You can use an undocumented SQL function MONOTONIC() but use it with caution:
[pre]
proc SQL;
create table class as
select MONOTONIC() as n,*
from SASHELP.CLASS
;quit;
[/pre]
Sincerely,
SPR
alwaz_searching
Calcite | Level 5
Thank you SPR...!!!

It's working...!

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 1467 views
  • 0 likes
  • 2 in conversation