In PROC PRINT, can you print only variables that begin with
the letter “A”?
Answer Posted / naveen
proc sql;
select *
from qqq
where name contains "A";
quit;
| Is This Answer Correct ? | 0 Yes | 4 No |
Post New Answer View All Answers
Explain why double trailing @@ is used in input statement?
Explain input and put function?
Do we follow ADAM in analysis dataset development?How? Usually which version? Why is it necessary?
How to limit decimal places for variable using proc means?
What is the difference between one to one merge and match merge? Give an example.
Describe the function and untility of the most difficult SAS macro that you have written.
How would you include common or reuse to be processed along with your statements?
How to specify variables to be processed by the freq procedure?
Explain the purpose of substr functions in sas programming.
how can you put a "trace" in your program? : Sas programming
Explain data_null_?
What are the statements in proc sql?
what is change analysis in sas di ? : Sas-di
What is the difference between reading data from an external file and reading data from an existing data set?
how are numeric and character missing values represented internally? : Sas programming