If you have a data set that contains 100 variables, but you
need only five of those, what is the code to force SAS to
use only those variable?
Answer Posted / srilatha
by using the views.
ex: proc sql;
create view emp_v
as
select empno,sal,deptno,comm from emp;
quit;
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What is the difference between class statement and by statement in proc means?
What are the functions which are used for character handling functions?
What function CATX syntax does?
Which statement does not perform automatic conversions in comparisons?
Describe the function and untility of the most difficult SAS macro that you have written.
How to test the debugging in sas?
what is the difference between unique key and primary key? : Sas-di
what is program data vector? : Sas-administrator
how to create the AE dataset by using SDTMIG specifications and SAP plan by using UNIX platform?
how are numeric and character missing values represented internally? : Sas programming
Approximately what date is represented by the SAS date value of 730?
how does sas handle missing values in a merge? : Sas programming
what are the types of interactive display types? : Sas-bi
which features do you use to check the data validations and errors? : Sas-administrator
What is the work of tranwrd function?