how can u join the two tables without using proc sql Joins
and nested queries ?
Answers were Sorted based on User's Feedback
Answer / kumarravi111
we can use Merge and set statements to join the tables in
Data step
| Is This Answer Correct ? | 19 Yes | 1 No |
Answer / sai
we can join two tables by using merge statement and also by
using two SET statements .
data one;
set two;
set three;
run;
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / vimal
actually i think UNION and UNION ALL is the correct answer.. since they ask related to that.
| Is This Answer Correct ? | 1 Yes | 2 No |
how will you location sas platform applications available from web browser? : Sas-bi
What is the function of output statement in a SAS Program?
what is SAS OPTIMIZATION?
CHOOSE ANY ONE OF THE PROCEDURE FOLLOWING TO GENERATE THE REPORTS? HOW CAN YOU SAY IT IS BETTER THAN THE OTHER? AND DEFERENCIATE THESE TWO ? 1). REPORT PROCEDURE 2). TABULATE PROCEDURE
· What are some good SAS programming practices for processing very large data sets?
How to convert a numeric variable to a character variable?
What is the sas data set? : sas-grid-administration
Give an example where SAS fails to convert character value to numeric value automatically?
I have a dataset concat having variable a b & c. How to rename a b to e & f?
name the scheduler for scheduling job and explain the scheduler? : Sas-di
Write SAS codes to compare two datasets. Suppose the allowable difference is 0.1.
What do you feel about hardcoding?