2

RETURNINGScalikeJDBC で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
4

1 に答える 1