can you do something like this?
I have two tables
a and b
a has a new column id which I want to retrieve from b
update a set id = (select b.id from b where b.name = a.name) ?
a (name, id) = id just added and is currently null..needs to be updated to what is shown in b... ?
b (name, id)