如何在 Snowflake 中查看时区

How to check time Zone in Snowflake

我想像 "US/Pacific" 或 "GMT" 一样在雪花中显示时区。 有没有什么功能可以证明这一点。 就像是 select current_timezone.

您可以 运行 在会话中进行以下操作:

show parameters like '%timezone%';

另请注意,当您 运行 以下内容时,您可以看到当前偏移量:

select current_timestamp();

希望对你有帮助...丰富