RETURNING
ScalikeJDBC でPostgres を使用しようとしています( https://github.com/scalikejdbc/scalikejdbc/issues/559を参照)
where
これは、句でどのように機能すると思われますか。はのreturning(...)
メンバですがUpdateSQLBuilder
、 aは をwhere
返しますConditionSQLBuilder
update(Post)
.set(sqls"${p.views}=${p.views}+${newViews}")
.where.eq(p.id,id)
.returning(p.id,p.lastUpdated, p.views) // does not work as it is not a member of ConditionSQLBuilder