Hi All,
When i am using below in SAS it is working fine:-
proc SQL ;
Select datepart(created_date) format=MONYY.
from ora.table1 ;
quit;
But when i am using same format in WHERE clause it is not working and giving error:-
PROC SQL ;
Delete from ORA.table1
WHERE datepart(created_date) format=MONYY. = put(today(),MONYY.) ;
What would be right way to get MONYY format in WHERE clause
Thanks,
RDS
You need:
WHERE put(datepart(CREATED_DATE),monyy.) = put(today(),monyy.)
It might better to use
WHERE month(CREATED_DATE)=month(today()) and year(CREATED_DATE)=year(today())
as this might readily be translated into a condition that Oracle can process.
Use option SASTRACE to check the Oracle query.
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.