I am just trying to create a simple booking system for a restaurant. I have 5 tables at the moment.
Member ---> Reservation <--- Exclusive Night
Menu ---> Dish
Above shows their relationship with each other. So a customer can make many reservations and many reservations are for one exclusive night.
However i have those other two tables and the bottom Menu and dish, with one menu having many dishes.
Although members and non members can view menus i am not sure how they could be joined by a foreign key, or joined at all.
So my question is, is it wrong/discouraged to have two tables like that which are not linked to the rest of the database?
Thanks for your help.