使用org.jooq api遇到了一些问题。以timestamptz字段的UTC格式将数据保存到DB中。当从db获取相同内容时,postgres中提供了一种方法。
select id, created_datetime at time zone 'pst' from account.
有什么办法可以达到jooq的要求?
selectStep = selectStep.select(fieldName).as(aliasName))
答案 0 :(得分:4)
在jooq api中搜索与“ AT TIME ZONE”相关的支持时。
我在github中发现此功能正在开发中。
https://github.com/jOOQ/jOOQ/issues/7238
可能对其他人有帮助。