Question
query from diffrent database server?
Hi,
I have couple table with join query and they are from the diffrent database server. How can I do this? look at the example below.
<cfquery name="getall">
select *
from tbl1 inner join tbl2
on tbl1.saleID = tbl2.saleID
</cfquery>
tbl1 is from server1/Database1 and tbl2 is from server2/Database2
Thanks
