Portal | IBM Manuals | Downloads | Products | Refer | Info | Programs | JCLs | Forum Rules*| Site Map | Mainframe CD 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index
 
Register
 
IBMMAINFRAMES.com - IBM Mainframe Support Forums Index FAQ Search Memberlist Usergroups Profile Log in to check your private messages Log in
 
How to compare 2 tables and copy fields

 
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> DB2
Author Message
chandracdac
Warnings : 1

New User


Joined: 15 Jun 2007
Posts: 35
Location: bangalore

PostPosted: Mon Aug 27, 2007 11:39 am    Post subject: How to compare 2 tables and copy fields
Reply with quote

Hai

I have a ssmall question. I have 2 tables which are identical. but in my second table some fields are empty .so i have to compare the two tables and
i have to copy the fields from 1st table to second one where ever the fields are empty .can u try? and pls tell me.
Back to top
View user's profile Send private message
References
PostPosted: Mon Aug 27, 2007 11:39 am    Post subject: Re: How to compare 2 tables and copy fields Reply with quote

saiprasadh

Active User


Joined: 20 Sep 2006
Posts: 86
Location: India

PostPosted: Mon Aug 27, 2007 1:14 pm    Post subject:
Reply with quote

Hi Chandra,

Try this query

Code:
UPDATE Table1 A                   
SET A.Column1  = (SELECT B.Column1 FROM
Table B WHERE                     
A.PrimarykeyColumn =B. PrimarykeyColumn)                             
WHERE                                         
A.Column1 = ' ' 


Let me know if this works

Thanks
Sai
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    IBMMAINFRAMES.com Support Forums -> DB2 All times are GMT + 6 Hours
Page 1 of 1