I am learning SQL and I created this database to offer a cinema reservation service.
My problem is that I can't make a reservation because my reservation table doesn't have a foreign key to table room. I also can't create a relation from reservation to table room because that would violate the normalization rules.
An reservation without a reserved seat doesn't make sense. Can you give me an advice how I can solve that?
I am using MySQL.