B
Bing
I set up a linked server in SQL Server 2005, called Sysco.
I have a table call 'Sysco History'
To query access it, I can use
select *
from Syco...[Sysco History]
But, I can figurate how to do a join with a SQL Server table,
OriginalInvoices
from SQL Management Studio.
I try this,
select *
from OriginalInvoice
Right Outer join on OriginalInvoice.Invoice = Syco...[Sysco History].Invoice
but it does not work.
Thanks for your help.
I have a table call 'Sysco History'
To query access it, I can use
select *
from Syco...[Sysco History]
But, I can figurate how to do a join with a SQL Server table,
OriginalInvoices
from SQL Management Studio.
I try this,
select *
from OriginalInvoice
Right Outer join on OriginalInvoice.Invoice = Syco...[Sysco History].Invoice
but it does not work.
Thanks for your help.