vote up 0 vote down star

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
flag

1 Answer

vote up 1 vote down

I don't use DB2 very often, but I see at least two logical problems:

  • The subquery is not guaranteed to return a single row, which is required if you want to use a row-subquery for an UPDATE like this.

  • The select-list has t2.color,t2.size,t2.weight but it takes those columns from a derived table with columns color,schema,weight. Size is not schema.


My solution to this UPDATE would be to generate a series of individual UPDATE statements:

SELECT 'UPDATE schem.table1' ||
       ' SET (color, schema, weight) =' ||
       ' (' || a.color || ', ' || b.schema || ', ' || a.weight || ')' ||
       ' WHERE key1 = ' || a.key1 || ';' AS q
FROM table a JOIN tableb b ON a.key = b.key;

The output is an SQL script ready to run.

Be careful about quoting if any of those columns are strings. I left all quoting out of this example, as if the columns are all integers.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.