There are many questions that have something to the effect of "What normal form are these data in?" and I admittedly have not combed through every one of them to see if "These data" they are referring to are pivoted. I'm asking this because I think this would be useful for those searching for this for those familiar with this terminology.
Lets say that I have a table with the columns:
personid*, email1, email2, email3
1 , [email protected], NULL , NULL
2 , [email protected],[email protected], [email protected]
3 , [email protected],[email protected]
Where personid is the primary key and uniquely identifies the table. Each e-mail is functionally dependent on personid but obviously this isn't in 3NF because that would involve having a person table and an e-mail table such as:
personid, email ,email_num
1 ,[email protected] ,1
2 ,[email protected],1
2 ,[email protected] ,2
2 ,[email protected],3
3 ,[email protected],1
3 ,[email protected] ,2
Where email_num takes the place of the n from the previous table.
What normal form is the first (pivoted) table in?