1
MySQLデータベースの列をQuerydslを使用して現在のタイムスタンプ値で更新する方法を教えてください。この列の現在の値はnull
です。Querydslを使用して現在のタイムスタンプの列を更新する
QCustomer customer = QCustomer.customer;
new JPAUpdateClause(session,customer).where(customer.name.eq("Bob"))
.set(customer.modified,????).execute();
最初の声明を改めてください。すでに列を更新しようとしましたか?そして、特に、どちら? – amonk