Forum Moderators: open
simple example:
table a - fields f1 and f2
table b - fields f1 and f2
I know other forms of sql quite well so have tried:
update a
from b
set a.f2 = b.f2
where a.f1 = b.f1
also tried:
update a, b
set a.f2=b.f2
where a.f1=b.f1
and seemingly endless other possible combinations, can't get anything to work.
I have looked for mysql examples on the web and am beginning to think its possibly because of the older version of mysql I'm using?
Any one any ideas?
Appologies if this has been posted already, the webmasterworld google search has gone now, since the banning of robots.
Thanks.
[dev.mysql.com...]