We Recommend

Beginning VB.NET Beginning VB.NET
Visual Basic .NET is the latest version of the most widely used programming language in the world, popular with professional developers and complete beginners alike. This book will teach you Visual Basic .NET from first principles. You'll quickly and easily learn how to write Visual Basic .NET code and create attractive windows and forms for the users of your applications.


Posted By

webonomic on 05/03/08


Tagged

sql proc summarize


Versions (?)


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

  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.