SAS OnlineTutor HomeFAQ PageSuggested Learning PathsContents+Searchback||next

Performing Queries Using SQL
Ordering Rows


Question: Modify the PROC SQL step to indicate that the SELECT statement is completed.
proc sql;
   select actlevel,sex,age,
          height*2.54 as centhgt,
          weight/2.2 as kgwgt
      from clinic.admit
      where actlevel='LOW'
      order by age 

           

  back||next

 

Copyright © 2002 SAS Institute Inc., Cary, NC, USA. All rights reserved.

Terms of Use & Legal Information | Privacy Statement