I have two tables from two databases.
org table from database1.
employee table from database2.
How can I merge those tables to get my data.
org table means organization table contains
(oid),
oname,
address
and some other things (oid is the unique key)
employee table contains
empid,
name,
address
and some other things (empid is the unique key)
oid
is the only common thing in both tables.
I want to merge them and add a filter to both organization and employee name
My problem is both tables are from a different databases.