Re: MySQL 4.0.11 update syntax

2003-03-09 Thread Paul DuBois
At 21:41 -0600 3/9/03, Charles Lewis wrote: I was reading somewhere that MySQL 4.1 UPDATE syntax will allow update to table with values from another table in the following manner: update client, zip set client.st = zip.st, client.city = zip.city where client.zip = zip.zip; Is there a creative wa

MySQL 4.0.11 update syntax

2003-03-09 Thread Charles Lewis
I was reading somewhere that MySQL 4.1 UPDATE syntax will allow update to table with values from another table in the following manner: update client, zip set client.st = zip.st, client.city = zip.city where client.zip = zip.zip; Is there a creative way to do this in 4.0.11? chas