I have 2 data sets A & B. Both have a variable called Age in
them, each of them specifying a different functionality.
In my program I use bot these data sets. How do I specify
which Age variable I want to use?
Answer Posted / kush
proc sql;
select Variable_name
from Variable_name.DataSet_name;
run;
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
Give some ways by which you can define the variables to produce the summary report (using proc report)?
Enlist the functions performed by sas.
What is the length assigned to the target variable by the scan function?
How can you create a macro variable with in data step? : sas-macro
Explain the purpose of retain statement.
What is a pdv and what are its functions?
What is the difference between %put and symbolgen? : sas-macro
what are the types of interactive display types? : Sas-bi
Can you execute macro within another macro? If so, how would sas know where the current macro ended and the new one began? : sas-macro
how to generate the test data in sas without input data? : Sas-administrator
What is PROC in SAS?
what is sas data set?
What is the role of sas grid administrator? : sas-grid-administration
if a variable contain dates like "2015/01"---"2015/12" (yymm) ,How to add day to those dates,if them month is jan then 31 if the month is feb then 28 so on ...
What are the statements in proc sql?