SAS Procedures

Help using Base SAS procedures
BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
bradja
Fluorite | Level 6

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;

 

1 ACCEPTED SOLUTION

Accepted Solutions
Astounding
PROC Star

Have you tried removing the extra semicolon after SQA_RESULTS?  WHERE should be a clause, not a separate statement.

View solution in original post

4 REPLIES 4
Astounding
PROC Star

Have you tried removing the extra semicolon after SQA_RESULTS?  WHERE should be a clause, not a separate statement.

bradja
Fluorite | Level 6

*facepalm*

 

Of course! I've removed the semicolon and it's working fine now 😄

eduardocuco
Calcite | Level 5

The same issue happened to me Smiley LOL

sas-innovate-white.png

Our biggest data and AI event of the year.

Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.

Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.

 

Register now!

What is Bayesian Analysis?

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 4 replies
  • 6182 views
  • 3 likes
  • 4 in conversation