bl4tech
Starting Member
2 Posts |
Posted - 2007-10-20 : 09:30:50
|
I apologize if my question sounds too basic...I have two tables as described below:tblONE----------ID Number(9,0) not null - Primary keyHolding Char(250)tblTWO ----------ID Number(9,0) not null - RepeatableHoldind Char(30)Data examples of tblONE (see that Holding fields are empty)------------------------------------ID Holding001002003004 005Data examples of tblTWO------------------------------------ID Holding001 v.1, n.1, 1989002 v.22, n.13, 1990 002 v.23, n.14, 1991003 v.56, n. 2, 2002004 v.87, n. 20, 2001004 v.54 , n. 3, 2006004 v.55, n. 4, 2007005 v.3, n. 5, 1998What I want is updating HOLDING field of tblONE with the content of HOLDING field from tblTWO, like that:(see that ID field is UNIQUE in tblONE and it can occours more than once in tblTWO) NEW Data examples of tblONE--------------------------------------------ID Holding001 v.1, n.1, 1989002 v.22, n.13, 1990 -- v.23, n.14, 1991003 v.56, n. 2, 2002004 v.87, n. 20, 2001 -- v.54, n. 3, 2006 -- v.55, n. 4, 2007005 v.3, n. 5, 1998TIA, Bill |
|