BookmarkSubscribeRSS Feed
lmyers2
Obsidian | Level 7

Hello - I'm using SAS 9.4 and am simply trying to use proc sql to make a table that is grouped and in a certain order but am getting syntax errors that I can't figure out. Below is the code and attached is the screenshot of the errors.

sql.PNG

 

 

PROC SQL;
create table by_specialty as
SELECT  SumIndemnityCPI,PRIMARY_RESPONSIBLE_PROVIDER,
from finalfinalfile,
GROUP BY PRIMARY_RESPONSIBLE_PROVIDER,
order by SumIndemnityCPI,
QUIT;

 

4 REPLIES 4
andreas_lds
Jade | Level 19

Remove the comma after primary_responsible_provider. For the next post: please don't post log as screenshot but as text using the {i}-icon.

Astounding
PROC Star
The final comma should be a semicolon.
ed_sas_member
Meteorite | Level 14

Hi @lmyers2 

To sum up all comments:

PROC SQL;
	create table by_specialty as
	SELECT  SumIndemnityCPI,PRIMARY_RESPONSIBLE_PROVIDER
	from finalfinalfile
	GROUP BY PRIMARY_RESPONSIBLE_PROVIDER
	order by SumIndemnityCPI;
QUIT;

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
  • 4 replies
  • 549 views
  • 6 likes
  • 5 in conversation