I'm creating a table and I have a constant name called C which will be filling like this: (CA, CB, CC...)
All of the columns must be filled by the user, (except ID wich is autonumbered):
ID | NUMBER | NIT | CA | CB | CC | ... | CZ
As you may notice normalization can be applied to the "C's", like this:
ID | NUMBER | NIT | C
- | - | - | A
- | - | - | B
- | - | - | C
- | - | - | ...
- | - | - | Z
Does normalization is necessary here? It is preferable handle rows of C instead of columns as the first table thought?
I would like to read recomendations or good practices for dealing with this.