From: Suren gc on
I want to join data horizontally without any common columns replacing each
other. I want to have the joined data set to have all the datasets side by
side with each other.
Data one;
A B
st 1
ts 2
Data two;
A B C
AR SE 44
TX SE 32
NY NE 30
Data three;
Species Cost
SW 32
HW 22

I want to join above three datasets in one single dataset with each sitting
side by side with the other. My final dataset would be:
A B A B C Species Cost
st 1 AR SE 44 SW 32
ts 2 TX SE 32 HW 22
NY NE 30



Thanks,
Suren