-
Hello, does anyone know if this dataset is normalized? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @okeneo If your question is regarding the database model (ie, normalised vs. de-normalised) then I would say that although it is mostly normalised no strict strategy is followed. For example, for convenience, tables may contain redundant attributes (like the club name appearing in Convenience for data consumers is prioritised, rather than one modelling technique in particular. |
Beta Was this translation helpful? Give feedback.
Hi @okeneo
If your question is regarding the database model (ie, normalised vs. de-normalised) then I would say that although it is mostly normalised no strict strategy is followed.
For example, for convenience, tables may contain redundant attributes (like the club name appearing in
clubs
and in gamestables
) or the same data may appear in multiple tables in a different format (seegames
andclub_games
) which would be against normalisation principles.Convenience for data consumers is prioritised, rather than one modelling technique in particular.