For a where-statement, where I need to extract entries from three different months, should it work to use this?
&last_updated_month" EQ "&month1" | "month2" | "&month3"
Or, must I use this more convoluted version?
(&last_updated_month" EQ "&month1") OR (&last_updated_month" EQ "month2") OR (&last_updated_month" EQ"&month3")
Sorry about the simple case question, but I don't have access to a historical data set to test it on now.
Thanks. ![]()
A simple way to do this (subject to the answer to Patrick's question) is to use the IN operator:
WHERE &last_updated_month IN ("&month1", "month2", "&month3")
which should boil down to doing exactly the same as your second syntax suggestion. The first suggestion whilst it would be nice is not supported in SAS data steps
Where is the WHERE used?
In a datastep, procs sql, other proc?
As a statement or dataset option?
A simple way to do this (subject to the answer to Patrick's question) is to use the IN operator:
WHERE &last_updated_month IN ("&month1", "month2", "&month3")
which should boil down to doing exactly the same as your second syntax suggestion. The first suggestion whilst it would be nice is not supported in SAS data steps
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Need to connect to databases in SAS Viya? SAS’ David Ghan shows you two methods – via SAS/ACCESS LIBNAME and SAS Data Connector SASLIBS – in this video.
Find more tutorials on the SAS Users YouTube channel.