re: Problem with UPDATE table ... can u help plz?

2002-10-17 Thread Egor Egorov
STIBS, Thursday, October 17, 2002, 12:26:34 AM, you wrote: S> I have a littlebig problem: S> I want to UPDATE table1.fields with data from table2.fields WHERE the id (in this S> case a product number) is the same in both tables. S> OK, I did this: S> UPDATE table1 SET table1.field1 = table2.fi

Re: Problem with UPDATE table ... can u help plz?

2002-10-16 Thread Bruce Lewis
> To: <[EMAIL PROTECTED]> Sent: Wednesday, October 16, 2002 5:15 PM Subject: RE: Problem with UPDATE table ... can u help plz? When I try that modified for my tables that fit this hypothetical, I get: CREATE TABLE `sales_table` ( `item_s` varchar(100) default '', `price_s

RE: Problem with UPDATE table ... can u help plz?

2002-10-16 Thread Greg Knaddison
on the page shows a kluge workaround. Greg -Original Message- From: Bruce Lewis [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 16, 2002 4:03 PM To: STIBS; [EMAIL PROTECTED] Subject: Re: Problem with UPDATE table ... can u help plz? You need an InnerJoin to perform the operation similar

Re: Problem with UPDATE table ... can u help plz?

2002-10-16 Thread Bruce Lewis
You need an InnerJoin to perform the operation similar to: UPDATE table1 SET table1.field1 = table2.field1, table1.field2 = table2.field2,... INNER JOIN Table1 ON Table2.ID = Table1.ID Bruce Lewis - Original Message - From: "STIBS" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: We