How would you code the criteria to restrict the output to be
produced?
Answer Posted / sanjeev
proc sql;
select * from sashelp.class;
quit;
gives you an output.
proc sql noprint;
select * from sashelp.class;
quit;
no errors and output is restricted.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is a pdv and what are its functions?
what is data access? : Sas-di
What do you understand by the term Normal Distribution?
Mention the difference between ceil and floor functions in sas?
How would you invoke a macro? : sas-macro
how we can create a FLAG datasets? Ex:-ID age_group no_persons 1 to 10 10 to 20 3 11 to 20 21 to 30 7 21 to 3o 31 to 40 5
What are the differences between proc means and proc summary?
What are the automatic variables for macro? : sas-macro
What are the best sas programming practices for handling very large datasets? : sas-grid-administration
Which statement does not perform automatic conversions in comparisons?
what is the difference between calculating the 'mean' using the mean function and proc means? : Sas programming
what are several options for creating reports in web report studio? : Sas-bi
what are the new features included in the new version of sas i.e., Sas 9.1.3? : Sas programming
why is sas considered self-documenting? : Sas programming
Define run-group processing?