Hi,
I have a field (table_date) that's in date time format: (sample: 08MAY2017:08:00:00.000) and I want to select records where the date is less than today()
here is what I have so far but it's not working
proc sql;
create table temp_del1
as
select * from temp_weekly_data
where
datepart(table_date) < datepart(today());
run;
please advise
Remove the datepart function from the today() function. i.e.,
datepart(table_date) < today();
Also, end your proc sql call with a quit; rather than a run; statement
Art, CEO, AnalystFinder.com
Remove the datepart function from the today() function. i.e.,
datepart(table_date) < today();
Also, end your proc sql call with a quit; rather than a run; statement
Art, CEO, AnalystFinder.com
thanks for your assistance
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.