有没有一种简单的方法可以在 azure sql 中插入具有正确时区的当前时间戳?

发布于 2025-01-09 19:32:17 字数 222 浏览 0 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我也只是我 2025-01-16 19:32:17

将查询中的 timezone 替换为以下任一方法,以在 Java 代码中设置时区。

  1. 添加 TimeZone.setDefault(TimeZone.getTimeZone("UTC"));
  2. 添加 @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.

  1. Add TimeZone.setDefault(TimeZone.getTimeZone("UTC"));
  2. Add @DateTimeFormat(pattern = "yyyy-MM-dd'T'HH:mm:ss.SSSX")` on `createdOn() method

References: spring.jpa.properties.hibernate.jdbc.time_zone applied on writes but not on reads? and Timezone issue in Spring Boot JPA application

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文