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 |
What are types of transport files?
2 Answers PRA Health Sciences, Quintiles,
What data sets do you need to produce the report?
if a program has some 1000 or more line and how to know whether the syntax of the particular code is correct without checking it manually
What SAS statements would you code to read an external raw data file to a DATA step?
how would you determine the number of missing or nonmissing values in computations? : Sas programming
How do handle working under pressure?
How to Rename Library?
How to read an input file in sas?
What report output formats can you generate using SAS?
what is the primary data source for the wrs? : Sas-bi
How do you specify the number of iterations and specific condition within a single do loop?
Explain what is data step?