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
Can you suggest us materials for sdtm mapping?
Describe the ways in which you can create macro variables?
What can you learn from the SAS log when debugging?
How to import multiple xls files into sas. Out of those files, how to get different values from a single variable and how to find number of rows per value type? We can do this using group by for one xls file with proc sql. Was wondering how I can achieve this for multiple files at the same time. Any ideas?
How we can call macros with in data step? : sas-macro
How to limit decimal places for variable using proc means?
Explain the difference between nodup and nodupkey options?
what are the scrubbing procedures in sas? : Sas programming
explain the concepts and capabilities of business object? : Sas-bi
what are the types of interactive display types? : Sas-bi
what are the softwares and applications that are used most frequently used by sas bi applications developers? : Sas-bi
Difference between informat and format?
if the Id has more then two transcatiion then show the first observation, IF Id has only two observation then It show both the observation
Mention what are the data types does SAS contain?
How you are maintaining sas programmes in your company...any specific version control software you are using? If so, tell me the name?