Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Retrieve data from two databases
> select x.dbo.table.field,y.dbo.table.field from x.dbo.table inner join
> y.dbo.table where x.dbo.table.field2=43 and y.dbo.table.field2=43;
INNER JOIN <table reference> ON <join clause>
Where is "join clause"?
I'm not sure about Oracle 8i, but else just remove "inner join" and use: , <table reference> and do the join in the WHERE.
-- Martijn Tonies Database Workbench - tool for InterBase, Firebird, MySQL, NexusDB, Oracle & MS SQL Server Upscene Productions http://www.upscene.com My thoughts: http://blog.upscene.com/martijn/ Database development questions? Check the forum! http://www.databasedevelopmentforum.comReceived on Sat Jan 20 2007 - 13:07:08 CST
![]() |
![]() |