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.
PROC SQL;
create table by_specialty as
SELECT SumIndemnityCPI,PRIMARY_RESPONSIBLE_PROVIDER,
from finalfinalfile,
GROUP BY PRIMARY_RESPONSIBLE_PROVIDER,
order by SumIndemnityCPI,
QUIT;
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.
All commas at the ends of your code lines are invalid.
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;
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 save with the early bird rate—just $795!
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.
Ready to level-up your skills? Choose your own adventure.