|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
joining two tables.
hello everyone,
i am new to oracle. Is there any possiblity to join two tables that have the same structure and do not have any relation between them aravind.s |
|
#2
|
|||
|
|||
|
What do you mean by join? If you just want to return the results of both tables in the same query, then you want a union:
Code:
select col1, col2, col3 from table1 union select col1, col2, col3 from table2 |
![]() |
| Viewing: Dev Shed Forums > Databases > Oracle Development > joining two tables. |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|