SAS OnlineTutor HomeFAQ PageSuggested Learning PathsContents+Searchback||next

Performing Queries Using SQL
PROC SQL Basics


Question: How many SAS statements does the PROC SQL step below contain?
 

two
proc sql;
   select id,lastname,netpay,grosspay,
          grosspay*.06 as bonus
      from emplib.payroll
      where netpay>25000
      order by lastname;
five
six
none



  back||next

 

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

Terms of Use & Legal Information | Privacy Statement