Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> View with mixed fields
Hello,
I have two tables:
Table A:
Field 1
Table B:
Field 1 Field 2
1 3 2 6 5 8
I want to create a view which mixes the values of tableA.Field1 and tableB.Field2 into one field 3 of the result view.
result view:
Field3
1 (from tableA.Field1) 2 (from tableA.Field1) 3 (from tableB.Field2) 4 (from tableA.Field1) 5 (from tableA.Field1) 6 (from tableB.Field2) 7 (from tableA.Field1) 8 (from tableB.Field2)
Is this possible?
How?
Greg Received on Thu Mar 25 2004 - 15:05:53 CST
![]() |
![]() |