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
Which are the statements whose placement in the data step is critical?
What is the difference between the proc sql and data step?
What are SAS/ACCESS and SAS/CONNECT?
i have a dataset with 100 obs i want to generate title from 20th obs onwards with total observations. that should contain 100 obs.dont use firstobs and dnt split the data. use dataset block or proc report? how can we genarate;
what are _numeric_ and _character_ and what do they do? : Sas programming
How will you react when, while consulting a SAS documentation manual to get an answer to a problem, someone says hey, I thought you were supposed to know all that stuff already, and not have to look it up in a book?
what techniques and/or procs do you use for tables? : Sas programming
what is proc Index? and what is proc document?
What is the difference between match merge and one to one merge?
what are the benefits of data integration? : Sas-di
What are the difference between the sas data step and sas procs?
Tell e how how dealt with..
Explain how you can debug and test your SAS program?
What is a macro routine?
what are 5 ways to perform a table lookup in sas? : Sas-administrator