How can I create a new table by using other two table's values.

Showing Answers 1 - 5 of 5 Answers

ARUNN

  • Sep 28th, 2006
 

You can try with the following:

CREATE TABLE table_name AS

(

SELECT column_name,column_name FROM tablename1

UNION ALL

SELECT column_name,column_name FROM tablename2

);

Shree

  • Oct 11th, 2006
 

create table table_name as( select tab1.column1,tab1.column2,tab2.column3 from table_name tab1,table_name2 tab2 where tab1.colum1=tab2.column4);

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions