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 does sas handle missing values in: assignment statements, functions, a merge, an update, sort order, formats, procs? : Sas programming
how would you create a data set with 1 observation and 30 variables from a data set with 30 observations and 1 variable? : Sas programming
What function CATX syntax does?
What is the difference between class statement and by statement in proc means?
What is the difference between %put and symbolgen? : sas-macro
I have a dataset concat having a variable a b & c. How to rename a b to e & f?
describe how to adjust the performance of data integrator? : Sas-di
do you need to know if there are any missing values? : Sas programming
In sas, what are the areas that you are most interested in? : sas-grid-administration
what is metadata? : Sas-bi
name some data transformation used in sas di? : Sas-di
What are the default statistics for means procedure?
What are the functions used for character handling?
Differentiate input and infile.
How many ways to overcome a missing values???