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;
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;
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;
?
Yes @Kurt_Bremser
@SASd15 wrote:
Yes @Kurt_Bremser
So where is the question then?
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 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.
Ready to level-up your skills? Choose your own adventure.