跳到主要内容

9. Update语句

BookTable table = BookTable.$;

int affectedRowCount = sqlClient
.createUpdate(table)
.set(table.price(), table.price().plus(BigDecimal.ONE))
.where(table.name().eq("GraphQL in Action"))
.execute();