Please help in the following SAS command to get it translated into SQL
if datepart(abc) <= datepart(xyz) <= datepart(abc)+7
Thanks
The datepart function can also be used in PROC SQL.
If
if datepart(abc) <= datepart(xyz) <= datepart(abc)+7;
appears as a standalone statement (without a then ....) in a data step, it is called a subsetting if, and can be done in SQL in a where condition. If abc or xyz are variables that are newly created in the SQL, use the "calculated" keyword.
Hey KurtBremser,
Thanks for your instant reply,
we need this to be converted into SQL server.
Thanks
@VinayakKankate wrote:
Hey KurtBremser,
Thanks for your instant reply,
we need this to be converted into SQL server.
Thanks
Then you will have to look for functional equivalents of the datepart() function in the MS SQL Server documentation.
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!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.
Ready to level-up your skills? Choose your own adventure.