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,
BobIf your DBMS permits a union view, try:
create veiw view1
as
Select id, child1 child
from table1
union
Select id, child2 child
from table1
union
Select id, child3 child
from table1;
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment