santosh kumar


{ City } banglore
< Country > india
* Profession * sas developer
User No # 105853
Total Questions Posted # 0
Total Answers Posted # 2

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 2
Users Marked my Answers as Wrong # 0
Questions / { santosh kumar }
Questions Answers Category Views Company eMail




Answers / { santosh kumar }

Question { 6926 }

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

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

Question { Satyam, 6133 }

% let A=3+4 what is result


Answer

where macro variables supports only character type data
here the global macro variable gets created as the value of A
is 3+4

Is This Answer Correct ?    1 Yes 0 No