I want to track what items are in which room. What is the ideal solution for this? For now, I am not interested in the quantity, but only that a certain item exists in a room or not. For the items exist unique categories, namely furniture, tool and machine.
This is what I have created so far, two tables ‘Room’ and ‘Interior’:
Currently, I do not have a junction table. I created three columns in the ‘Room’ table based on the unique categories and linked it to the ‘Interior’ table. I restricted the link per view (depending on category).
Is this the best possible way to present the information I want? Or do I need a junction table and if yes how do I implement it?