This does not solve my problem, but thanks. I am getting an error saying invalid column name. I have attached the code. I am very new to SQL so please bear with me.
Update registers_main
set reg_long_desc=unit_instances.fes_long_description
where reg_code like '______l'
and reg_long_desc is null
Cheers
Antony
riese wrote:
if i got u right try:
UPDATE table SET field = othertable.description WHERE table.id = blabla
(you'll need the "where" clause to not update the whole table but only one row...)
but perhaps i got you wrong...
greetz
riese