BookmarkSubscribeRSS Feed
Melaine
Calcite | Level 5

Hello folks.. I have a prblem with the SQL procedure;

I have submitted the program below but consistently get an error

proc sql;

select Gender

sum (Salary) as Total_Salary

from Work.staff

Group by Gender;

quit;

The error message is as follows

sum (Salary) as Total_Salary

     ---

     22

     76

ERROR 22-322: Syntax error, expecting one of the following: !, !!, &, (, *, **, +, ',', -, /,

              <, <=, <>, =, >, >=, ?, AND, BETWEEN, CONTAINS, EQ, EQT, GE, GET, GT, GTT, LE,

              LET, LIKE, LT, LTT, NE, NET, OR, ^=, |, ||, ~=.

ERROR 76-322: Syntax error, statement will be ignored.

I need help.

1 REPLY 1
ballardw
Super User

SQL requires commas between variables on select and similar list type instructions (order by or group by)

select Gender ,

sum (Salary) as Total_Salary

from Work.staff

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 1 reply
  • 719 views
  • 1 like
  • 2 in conversation