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 , e@e.us, NULL , NULL
2 , a@a.com,b@b.co, c@c.com
3 , j@j.com,l@l.uk
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 ,e@e.us ,1
2 ,a@a.com,1
2 ,b@b.co ,2
2 ,c@c.com,3
3 ,j@j.com,1
3 ,l@l.uk ,2
Where email_num takes the place of the n from the previous table.
What normal form is the first (pivoted) table in?