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 / vinod swarna
use select statement with just those 5 variables:
proc sql;
create table only5 as
select var1,var2,var3,var4,var5
from example;
quit;
| Is This Answer Correct ? | 8 Yes | 0 No |
Post New Answer View All Answers
what versions of sas have you used (on which platforms)? : Sas programming
for report generation which one you used proc report or data_null_?
Mention sas system options to debug sas macros.
Tell me more about the parameters in macro? : sas-macro
how can you put a "trace" in your program? : Sas programming
Do you need to rearrange the order of the data for the report?
Describe the ways in which you can create macro variables? : sas-macro
What are types of transport files?
If money were no object, what would you like to do?
If you could design your ideal job, what would it look like?
explain what is data set in sas? : Sas-administrator
What can you learn from the SAS log when debugging?
what is sas olap server? : Sas-di
what are the softwares and applications that are used most frequently used by sas bi applications developers? : Sas-bi
For clinical entire study how many tables will create approx?