I think I'm not asking the question the right way so I can not find the answer even with hours of research. So I'm hoping I can get an answer here.
Table1
fragranceId, description, status
1, Floral, Active
2, Musk, Active
3, Fruity, Active
Table2
fragranceId, contactId, value
1, 1, Love It
2, 1, Hate It
3, 1, NULL
I can combine the results of the 2 table and get
fragranceId, contactId, description, status
BUT I'm spinning my wheels trying to get it to limit to value and contactId while showing those fragrances that do not have a value.
IE:
fragranceId, contactId, description, status, value
1, 1, Floral, Active, Love It
2, 1, Musk, Active, Hate It
3, 1, Fruity, Active, NULL