Posted By

webonomic on 05/03/08


Tagged

sql proc summarize


Versions (?)


Advertising

Website Promotion DIRECTORY is a crucial factor for all websites that need to gain better organic search engine rankings and increase website traffic.
Submitting your website as part of your Web Promotion strategy to our SEO friendly and high traffic Business Directory for review is an excellent way to gain a valuable backlink and increase your websites visibility online.

Submit Site


Using Proc SQL to summarize tables into groupings


Published in: SAS 






URL: http://jaredprins.squarespace.com/blog/2008/5/11/use-proc-sql-to-summarize-tables-into-groupings.html

Using Proc SQL summarize the table sashelp.shoes grouping on

Expand | Embed | Plain Text
  1. /*Taken from thread http://groups.google.com/group/comp.soft-sys.sas/browse_thread/thread/8cdec58cd0846e29?hl=en*/
  2.  
  3. /*Method 1*/
  4. proc sql feedback;
  5. *describe table dictionary.columns;
  6. select
  7. catx(' ','Sum(',name,') as',
  8. Name,ifc(not missing(format),cats('format=',format),' '))
  9. into :sumlist separated by ', '
  10. from dictionary.columns
  11. where libname eq 'SASHELP' and memname eq 'SHOES' and type eqt 'n'
  12. ;
  13. %put NOTE: &numlist;
  14. select region, product, &sumlist
  15. from sashelp.shoes
  16. group by region, product
  17. ;
  18. quit;
  19. run;
  20.  
  21.  
  22. /*Method 2*/
  23. proc sql;
  24. select region, product, sum(stores) as sumstores, sum(sales) as sumsales,
  25. sum(inventory) as suminventory, sum(returns) as
  26. sumreturns from sashelp.shoes
  27. group by region, product;
  28. quit;

Report this snippet 

You need to login to post a comment.

Download royalty free graphics