I have the following data in one query: (there will always be 3 rows of contact data. Always)
name phone
john 5551234
jane 3452345
paul 8475739
I have the following data in another query:
col1 col2 col3
data1 data2 data3
What I want to do is to add the first query to the second to obtain this:
col1 col2 col3 name1 phone1 name2 phone2 name3 phone3
data1 data2 data3 john 5551234 jane 3452345 paul 8475739