I am trying to write a query that captures information from one database and attaches it to information in another database.
TableA idA valueA idB TableB idB valueB
The tricky part is that in table A, idB is not always defined, so when I make a normal join, I only get results where TableA has idB. I want to be able to capture all the information from TableA, even if it does not have the corresponding idB value.
source share