how can u join the two tables without using proc sql Joins
and nested queries ?
Answer Posted / 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 |
Post New Answer View All Answers
Enlist the syntax rules followed in sas statements.
how would you create multiple observations from a single observation? : Sas programming
explain about data integrator metadata reports? : Sas-di
what is operational data and operational system? : Sas-di
if you were told to create many records from one record, show how you would do this using array and with proc transpose? : Sas programming
What is a put statement?
What are the five ways to do a table lookup in sas? : sas-grid-administration
what are sas bi dashboard components? : Sas-bi
WHAT IS SAS WEB SERVICE and what are the steps to create an xml service ?
What is the use of stop statement?
what is the purpose of _error_? : Sas programming
Why double trailing @@ is used in input statement?
How to sort in descending order?
how does sas handle missing values in functions? : Sas programming
Name and describe few sas character functions that are used for data cleaning in brief.