Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

copying a column from a table to another tables's column

Status
Not open for further replies.

omerdurdu

Programmer
Jul 21, 2001
72
TR
I have two tables: I would like to copy the column (Dataset_ID) from another table's column (Dataset_ID)
there is no record in second table.
Can someone show me the sql statment for this. I am using Oracle 9.2.0
Thanks
 
I am not an Oracle person but since you posted in the ansi forum:

insert into table2 (dataset_id)
select dataset_id from table1
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top