How can I display all rows for vendorkey even if vendorkey is null on table vendors
select vendor.name, vendor.key, vendor.id, item.number, item.name
from dbo.vendor, dbo.item
where vendor.key = item.vendorkey
With the query above I only get data that exists on table vednor
I want to get all of the lines on dbo.item even if it does not exist on dbo.vendor
select vendor.name, vendor.key, vendor.id, item.number, item.name
from dbo.vendor, dbo.item
where vendor.key = item.vendorkey
With the query above I only get data that exists on table vednor
I want to get all of the lines on dbo.item even if it does not exist on dbo.vendor