我想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 数据库。