Let say we have tables A, B, and C.
A left join B with key = invoice number ( A<---B).
B right join C with key = supplier code ( B---->C).
What does the result look like?
field1: A's invoice number
field2: some field from B that matches A's number and C's code?
field3: C's supplier code
But what about those records where no invoice number is found in B and/or no supplier code is found in B? Do they show up too? but with blank fields for invoice number and supplier code?
Thanks for reading my question!
A left join B with key = invoice number ( A<---B).
B right join C with key = supplier code ( B---->C).
What does the result look like?
field1: A's invoice number
field2: some field from B that matches A's number and C's code?
field3: C's supplier code
But what about those records where no invoice number is found in B and/or no supplier code is found in B? Do they show up too? but with blank fields for invoice number and supplier code?
Thanks for reading my question!