Hello I am having a bit of trouble with a two column join query. The Customer table has 4 columns ID, NAME, STATE, PHONE_NUMBER. The Vendor table has 5 columns ID, NAME, STATE, PHONE_NUMBER, DISCOUNT.
I built a query with a two column join on NAME and STATE that returns Customer.PHONE_NUMBER and Vendor.DISCOUNT. Some rows are being omitted from the return data set because some Vendor.STATE values are NULL.
I need those returned in the query as well.
Any information would be great.