... it would need to be something like
UPDATE `Person` SET `new_address` = (select `address` + `town` as 'Combined' from Person)
but that just throws up an error
#1093 - You can't specify target table 'Person' for update in FROM clause
so my syntax obviously is well off
what would be really coool would be if I could do
UPDATE `Person` SET `new_address` = (select `address` + ', ' + `town` as 'Combined' from Person)
but maybe i'd have to add the comma into the original address column before concatenating the two cols
any ideas ?