我想根据另一个表中的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。