Hello,
I am currently looking for a Select statement which will do this..
|------Apples------| 
 |--id--|
 - 1   
 - 16
 - 23
 - 42
|------Oranges------| 
 |--id--|
 - a   
 - b
 - c
*SELECT STATEMENT*
|------Fruit Cocktail------| 
|--AppleID--|--OrangeID--|
   1              a
   1              b
   1              c
   16             a
   16             b
   16             c
etc...
So basically for every left hand column select that and every right hand column
Thanks Daniel