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
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 to generate the test data in sas without input data? : Sas-administrator
what are the new features included in the new version of sas i.e., Sas 9.1.3? : Sas programming
what is sas enterprise intelligence architecture? : Sas-bi
How you are maintaining sas programmes in your company...any specific version control software you are using? If so, tell me the name?
: and & modifiers.
Compare sas with other data analytics tools.
Explain bmdp procedure?
what are _numeric_ and _character_ and what do they do? : Sas programming
how many types of prompts are there? : Sas-bi
how do you debug and test your sas programs? : Sas programming
What are the differences between proc means and proc summary?
hi tell be about pfizer? how to compare the work with other companies ? please tell me how to login and work also?
What is the basic syntax of a sas program?
what is the difference between infile and input? : Sas-administrator