openquery join two tables

Solutions on MaxInterview for openquery join two tables by the best coders in the world

showing results for - "openquery join two tables"
Rhydian
07 May 2017
1Select Pants.Long, Pants.Short,
2    Shirts.White, Shirts.Black
3  From OpenQuery(PANTS, 'Select Long, Short From Jeans') As Pants
4  Join OpenQuery(SHIRTS, 'Select White, Black, Long From Stores') As Shirts 
5    On Pants.Long = Shirts.Long;
6
similar questions
queries leading to this page
openquery join two tables