I've got three tables. Product, Warehouse and IsIn.
Product:
- productID
- name
- price
Warehouse:
- warehousID
- name
IsIn:
- productID*
- warehousID*
- quantity
I now want to write a question where i get all warehouses where a specific product does not exist.
I can get a table where the specific product are, but when i try to get where it's not, I get the wrong answer.
Does anyone know how i can write the question?