|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
Generate data entry and reporting .NET Web apps in minutes, straight from your database. Read our FREE whitepaper “Build Web 2.0 Applications Without Hand-Coding” Download now! |
|
#1
|
|||
|
|||
|
create table!
hi,
I wanna create a table by fetching columns from two other tables? For eg: table -1 name age table -2 part1 part2 I wanna create a 3rd table with the following fields name age part1 part2 Any kind of help will be appreciable? thanx. |
|
#2
|
|||
|
|||
|
yes
i got it CREATE TABLE T AS (SELECT T1.NAME, T1.AGE, T2.PART1, T2.PART2 FROM T1,T2 ) / |
![]() |
| Viewing: Dev Shed Forums > Databases > Oracle Development > create table! |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|