如何在雪花中减去/添加时区差异
我有例如: 2022-01-20 03:59:00.000 -0600
我希望将偏移量应用于整个时间戳。我如何在雪花中做到这一点。就我而言,应在此处减去 6 小时以获得 CST 时间(无偏移)
I have for eg : 2022-01-20 03:59:00.000 -0600
I wish to apply the offset to the entire timestamp. How do I do it in Snowflake. I my case, 6 hrs should be subtracted here to get the time in CST (without the offset)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 CONVERT_TIMEZONE 函数:
如果要截断时区部分,您可以使用 TO_TIMESTAMP_NTZ 函数:
Use CONVERT_TIMEZONE function:
If you want truncate the timezone part, you can convert TZ timestamp to NTZ timestamp using TO_TIMESTAMP_NTZ function: