有没有一种简单的方法可以在 azure sql 中插入具有正确时区的当前时间戳?
我正在使用 Java JPA @query(...) 标记,其中使用 current_timestamp 将 GTM 时间插入到 azure db 表中。我想知道当我插入时间戳时是否有一种简单的方法来设置 current_timestamp 的时区。类似于
“UPDATE schema.tablename SET column = current_timestamp in zone 'timezone here'
I'm using a Java JPA @query(...) tag where I use current_timestamp to insert a GTM time to the azure db table. I'm wondering if there is an easy way to set the timezone of the current_timestamp when I insert my timestamp. Something like
"UPDATE schema.tablename SET column = current_timestamp in zone 'timezone here'
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将查询中的
timezone
替换为以下任一方法,以在 Java 代码中设置时区。TimeZone.setDefault(TimeZone.getTimeZone("UTC"));
@DateTimeFormat(pattern = "yyyy-MM-dd'T'HH:mm:ss.SSSX")`关于 `createdOn()
方法参考:spring.jpa.properties。 hibernate.jdbc.time_zone 应用于写入但不适用于读取? 和 Spring Boot JPA 应用程序中的时区问题
Replace
timezone
in your query with any of the following ways to set time zone in java code.TimeZone.setDefault(TimeZone.getTimeZone("UTC"));
@DateTimeFormat(pattern = "yyyy-MM-dd'T'HH:mm:ss.SSSX")` on `createdOn()
methodReferences: spring.jpa.properties.hibernate.jdbc.time_zone applied on writes but not on reads? and Timezone issue in Spring Boot JPA application