Hi,
I need to update multiple rows in a table (DB2) with the result of a select statement. My query wil look something like this
update schem.table1 t1
set (t1.color,t1.size,t1.weight) = (select t2.color,t2.size,t2.weight
from (select a.color,
b.schema,
a.weight,
a.key1
from table a
join tableb b on a.key = b.key) t2
where t1.key1 = t2.key1)
but when ever i execute this query, i get this exception:
[Error Code: -811, SQL State: 21000] DB2 SQL Error: SQLCODE=-811, SQLSTATE=21000, SQLERRMC=null
