BookmarkSubscribeRSS Feed
SASd15
Calcite | Level 5

Hello,

 

I am using Proc SQL to extract data from the DB. However, rather that a range of data (i.e between X and Y), i would like to extract it from multiple dates.

 

I would like to use

%LET DATES = ('21-JUN-2016'd',22-jul-2016'd,'21-NOV-2016'd,'21-dec-2016'd);

 

Instead of this:

%LET BEGDT = '01-jul-2016'd;

%LET ENDDT = '31-dec-2016'd;

 

 

 

5 REPLIES 5
RW9
Diamond | Level 26 RW9
Diamond | Level 26

Your code is invalid, containing unbalanced quote marks:

%LET DATES = ('21-JUN-2016'd',22-jul-2016'd,'21-NOV-2016'd,'21-dec-2016'd);

                                                               ^

 

Secondly, is this the type of "date" that your database is expecting?  Its likely that the DB stores dates differently to SAS, do you have some working code?

 

Next up the usual advice, put data into a dataset:

 

data dvals;
  d='21jun2016'd; output;
  d='22jul2016'd; output;
...
run;

This way you can then do:

 

proc sql;
  select *
  from    HAVE
  where  DATE in (select * from DVALS);
quit;
Kurt_Bremser
Super User

So you want

%LET DATES = ('21-JUN-2016'd,'22-jul-2016'd,'21-NOV-2016'd,'21-dec-2016'd);

proc sql;
select ....
from .....
where date in &dates
;
quit;

?

SASd15
Calcite | Level 5

My apologies, not sure why the proc sql didn't work for me initially. I thought i was using an incorrect syntax.

 

Thanks!

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

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
  • 5 replies
  • 1201 views
  • 0 likes
  • 3 in conversation