J
Jade5
Hello:
How can I make this query a Left Outer Join? I want all institution names
from the institution table and only the institutions from the History table
that have a previous name. Thanks J.
Select DistinctRow [Institution name], [Institution id], [Corporation id]
from [Institution table]
UNION Select [previous name], [Institution id], [Corporation id] from
[History table]
ORDER BY [Institution name];
How can I make this query a Left Outer Join? I want all institution names
from the institution table and only the institutions from the History table
that have a previous name. Thanks J.
Select DistinctRow [Institution name], [Institution id], [Corporation id]
from [Institution table]
UNION Select [previous name], [Institution id], [Corporation id] from
[History table]
ORDER BY [Institution name];