Hi All,
Why does this give me a warning "This SAS global statement is not supported in PROC SQL. It has been ignored.
It is ignoring the WHERE line.
Is there another way I can dynamically use the 1st day of the previous month (based on yesterday) and yesterday for my startdate and enddate?
%LET startDate = intnx('month',today()-1,-1,"BEGINNING");
%LET endDate = today()-1;
proc sql;
DELETE FROM CCEXTCSD.SQA_RESULTS;
WHERE EVAL_LOCAL_DATE BETWEEN &startDate AND &endDate;
quit;
Have you tried removing the extra semicolon after SQA_RESULTS? WHERE should be a clause, not a separate statement.
Have you tried removing the extra semicolon after SQA_RESULTS? WHERE should be a clause, not a separate statement.
*facepalm*
Of course! I've removed the semicolon and it's working fine now 😄
The same issue happened to me
Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.
If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website.
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.