栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Java

13-Set Time Zone

Java 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

13-Set Time Zone

常用语法
SET TIME ZONE LOCAL
SET TIME ZONE 'timezone_value'
SET TIME ZONE INTERVAL interval_literal
参数解释
  • LOCAL

Set the time zone to the one specified in the java user.timezone property, or to the environment variable TZ if user.timezone is undefined, or to the system time zone if both of them are undefined.

  • timezone_value

The ID of session local timezone in the format of either region-based zone IDs or zone offsets. Region IDs must have the form ‘area/city’, such as ‘America/Los_Angeles’. Zone offsets must be in the format ‘(+|-)HH’, ‘(+|-)HH:mm’ or ‘(+|-)HH:mm:ss’, e.g ‘-08’, ‘+01:00’ or ‘-13:33:33’. Also, ‘UTC’ and ‘Z’ are supported as aliases of ‘+00:00’. Other short names are not recommended to use because they can be ambiguous.

  • interval_literal

The interval literal represents the difference between the session time zone to the ‘UTC’. It must be in the range of [-18, 18] hours and max to second precision, e.g. INTERVAL 2 HOURS 30 MINUTES or INTERVAL '15:40:32' HOUR TO SECOND.

示例
-- Set time zone to the system default.
SET TIME ZONE LOCAL;

-- Set time zone to the region-based zone ID.
SET TIME ZONE 'America/Los_Angeles';

-- Set time zone to the Zone offset.
SET TIME ZONE '+08:00';

-- Set time zone with intervals.
SET TIME ZONE INTERVAL 1 HOUR 30 MINUTES;
SET TIME ZONE INTERVAL '08:30:00' HOUR TO SECOND;
使用

如我们这里使用的是北京/重庆的时区,则可以用以下命令

SET TIME ZONE 'Asia/Shanghai'
SET TIME ZONE '+8:00';
SET TIME ZONE INTERVAL 8 HOUR;
spark.conf.set("spark.sql.session.timeZone", "Asia/Shanghai")

最后用下来发现只有如下语句可用

spark.sql("SET TIME ZONE 'Asia/Shanghai'")
spark.conf.set("spark.sql.session.timeZone", "Asia/Shanghai")

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/827176.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号