I was trying to convert rows to columns - and was not able to achieve - here is my data set - table1
Zipcode dcode dname
009 512 Albany
009 513 springfield
008 123 place1
008 123 place1
007 345 place2
007 346 place3
I want the data to be converted as
Zipcode dcode1 dcode2 dname1 dname2
009 512 513 Albany Springfield
008 123 place1
007 345 346 place2 place3