Skip to Main Content

Oracle Database Discussions

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Create one tables from 2 different tables

lesakSep 8 2008 — edited Sep 8 2008
Hi,

How I can create one table from 2 different tables. Source tables have data and I want to include it in new table.
I try this:

create table NEW_ONE
select * from OLD_ONE
union
select * from OLD_ONE2;

But it didn't work correctly :/
This post has been answered by Robert Geier on Sep 8 2008
Jump to Answer

Comments

Processing
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Oct 6 2008
Added on Sep 8 2008
6 comments
312 views