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 / santosh
as per my understanding this is the solution
without renaming the variables the only way is to do using
proc sql;
select a.age,b.age from a,b;
quit;
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
what is enterprise guide? What is the use of it? : Sas programming
explain what is data set in sas? : Sas-administrator
What is the difference between INPUT and INFILE ?
Are you sensitive to code walk-throughs peer review or QC review?
What is the difference between class statement and by statement in proc means?
how does sas handle missing values in sort order? : Sas programming
How is character variable converted into numeric variable and vice versa?
What do the mod and int function do? : Sas programming
Which command is used to perform sorting in sas program?
Describe the function and untility of the most difficult SAS macro that you have written.
Give an example where SAS fails to convert character value to numeric value automatically?
What is a method to debug and test your SAS program?
What is the order of application for output data set options, input data set options and SAS statements?
What are the data types in sas?
How do you specify the number of iterations and specific condition within a single do loop?