Database Normalization

后端 未结 13 1895
死守一世寂寞
死守一世寂寞 2020-11-29 11:33

I\'m new to database design and I have been reading quite a bit about normalization. If I had three tables: Accommodation, Train Stations and Airports. Would I have address

13条回答
  •  感动是毒
    2020-11-29 12:10

    Would I have address columns in each table or an address table that is referenced by the other tables?

    Can airports, train stations and accommodation each have a different address format?

    A single ADDRESS table minimizes the work necessary dealing with addresses - suite, RR, postal/zip code, state/province...

    Is there such a thing as over-normalization?

    There are different levels of normalization. I've only encountered what I'd consider poor design rather than normalization.

提交回复
热议问题