Hello!
I'm searching for a solution for the following problem. Maybe someone can help me.
Let's say I have 2 tables.
table invoice
id, customer_id, date, prize
table customer
id, name, street, zip, city
The problem is that if I change e.g. the name in the customer table the name is changed in all invoices that are already booked. That must not be. What is the best solution for that case? Should I create the name, street, zip and city columns into the invoice table too although it breaks the rules of normalization?
Thank's in advance!
Mad