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 slibref?
Hi all, If Anybody has Advance SAS Certification dumps??? Please share with me. Email: pramod.kalugade03@gmail.com
Mention what is the difference between nodupkey and nodup options?
what is slowly changing dimension? : Sas-di
what is star schema? : Sas-di
What are common programming errors committed in sas
Explain data step in SAS
what are 5 ways to perform a table lookup in sas? : Sas-administrator
what is the difference between: x=a+b+c+d; and x=sum (of a, b, c ,d);? : Sas programming
Given an unsorted data set, how to read the last observation to a new data set?
How substr function works in sas?
how can you import .csv file in to sas? : Sas programming
describe how to adjust the performance of data integrator? : Sas-di
What are the implications?
What’s the difference between var b1 – b3 and var b1 — b3?