You wrote :
http://www.dbforums.com/newreply.php...e=1&p=3675756#
Update table_2
set column_1 = value_1,
column_2 = value_2
from table_0 A, table_1 B, table_2 t
where < Join Conditions >
This is wrong.
It should have be written as follows :
Update table_2
set column_1 = (select value_1 from table_0 a, table_1 b
where << join condition between table_0 and table_1 >>
and << join condition with table_2 >>),
column_2 = (select value_2 from table_1 b, table_0 a
where << join condition between table_0 and table_1 (if necessary) >>
and << join condition with table_2 >> )
where exists (select "x" from table_0 a, table_1 b
where << join condition between table_0 and table_1 >>
and << join condition with table_2 >> )
Regards,
Eduardo (tolosano)
http://www.dbforums.com/newreply.php...e=1&p=3675756#
La Plata,
Prov. Buenos Aires.
Argentina