Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

How would you combine 3 or more tables with different
structures?

Answer Posted / nandu

sort all datasets before going to merge
data abc ;
merge aa (in=a) bb (in=b) cc(in=c) ;
by empid /*by variable*/
if a or b or c;/*based on your requirement*/
run;

Is This Answer Correct ?    3 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the ways in which macro variables can be created in sas programming?

1168


What are all the problems you faced while validating tables and reports?

3509


what is proc Index? and what is proc document?

2763


How can sas program be validated?

1069


what are all the reports you generated in your recent project?

2251


Name some categories in sas 9? : sas-grid-administration

1019


What is the general format of function in sas? : sas-grid-administration

1028


in the flow of data step processing, what is the first action in a typical data step? : Sas programming

1105


How to include or exclude specific variables in a data set?

1162


What is the role of administrative users? : sas-grid-administration

1134


How do you control the number of observations and/or variables read or written? Approximately what date is represented by the SAS date value of 730?

1721


How would you invoke a macro? : sas-macro

1180


Explain data step in SAS

1157


how would you create a data set with 1 observation and 30 variables from a data set with 30 observations and 1 variable? : Sas programming

1398


How might you use MOD and INT on numeric to mimic SUBSTR on character Strings?

1403