根据h2中的select合并值

时间:2013-03-22 01:22:53

标签: sql select merge h2

我想根据另一个表中的select值来MERGE个值。像这样:

MERGE INTO table1 (column1) key(id) 
    values (select amount from table2 where id = id limit 1 + 
    select column1 from table1 where id = id - 1 limit 1) 
    where id > 0

我希望对于id大于0的每一行都会发生这种情况。此外,我希望table1中column1的值为上一行中column1的值加上table2中column2的值。

我正在使用H2 database

0 个答案:

没有答案