I have a table in a database that has very old and not very relational and I want to create a quick view to show the information in a better way. Let's say that the table has 4 fields : id , child1, child2, child3. I want to create a view from this table that will show two fields: id and child. So, my table currently looks like this:
id child1 child2 child3
1 sam bob chris
and i would like the view to display the information like this......
id child
1 sam
1 bob
1 chris
Can anybody help me? Thanks in advance,
Bob