If I have the following tables
tbl1:
+------+-----------+
| sex | type |
+------+-----------+
| m | rolls |
| f | acom |
+------+-----------+
tbl2:
+------+-----------+
| age | type |
+------+-----------+
| 12 | rolls |
| 25 | acom |
+------+-----------+
How do I create a view to show the two tables merged but, sex and age become category
+-----------+-----------+
| category | type |
+-----------+-----------+
| m | rolls |
| f | acom |
| 12 | rolls |
| 25 | acom |
+-----------+-----------+
thanks.