BookmarkSubscribeRSS Feed
srdhoble
Calcite | Level 5

Hi Team,

              I am trying to convert SAS code to SQL.

first step is to get precode converted properly.

Need help in converting below code to SQL.I think we will need to have global parameters in SQL code.Corect me if i am wrong.

 

Here is the sas code:

%LET RUNOUT = 0;
%LET PERIODS = 4;
%let ENRLMNTDY = 15;
%LET RUN_DATE = %SYSFUNC(TODAY());
%LET START_DATE = %SYSFUNC(INTNX(MONTH, &RUN_DATE.,%EVAL(-12*&PERIODS.-&RUNOUT.),B));
%LET END_DATE = %SYSFUNC(INTNX(MONTH, &RUN_DATE.,%EVAL(-1-&RUNOUT.),E));

 

3 REPLIES 3
Reeza
Super User

It depends on how it's used in the code. If there are no loops but just filters then you may not need them, but otherwise you may. 

 

Edit: Remember that its better if you don't do a line to line conversion for code, determine the purpose and figure out how to replicate this in SQL. I'm assuming you're not using SAS SQL but MS SQL or Oracle SQL? 

 

anoopmohandas7
Quartz | Level 8

Are you expecting the below variables to be a part of a dataset when read through SQL or something else ?

LinusH
Tourmaline | Level 20

Why are you doing this?

If you are in a migration from SAS, don't expect too much help here. Hire the muscle instead to do this for you.

Data never sleeps

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

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!

Register Now

How to Concatenate Values

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.

SAS Training: Just a Click Away

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

Browse our catalog!

Discussion stats
  • 3 replies
  • 1604 views
  • 0 likes
  • 4 in conversation