oracle timestamp with time zone类型-凯发app官方网站

凯发app官方网站-凯发k8官网下载客户端中心 | | 凯发app官方网站-凯发k8官网下载客户端中心
  • 博客访问: 3977421
  • 博文数量: 536
  • 博客积分: 10470
  • 博客等级: 上将
  • 技术积分: 4825
  • 用 户 组: 普通用户
  • 注册时间: 2006-05-26 14:08
文章分类

全部博文(536)

文章存档

2024年(3)

2021年(1)

2019年(1)

2017年(1)

2016年(2)

2013年(2)

2012年(10)

2011年(43)

2010年(10)

2009年(17)

2008年(121)

2007年(252)

2006年(73)

相关博文
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·
  • ·

分类: oracle

2006-12-01 13:49:34

timestamp with time zone类型

oracle定义的语法:
timestamp [(fractional_seconds_precision)] with time zone

该类型在timestamp类型的基础上增加了时区的信息. 注意时区时差(tzh)的范围是"-12 ~ 13", fractional_seconds_precision的使用与timestamp类型是一致的. 在数据库中保存占13字节.
eg:

sql> create table ff(a timestamp(8) with time zone);

table created.

sql> desc ff;
 name                                      null?    type
 ----------------------------------------- -------- ----------------------------
 a                                                  timestamp(8) with time zone

sql> insert into ff values(to_timestamp_tz('2006-12-14 19:45:09.9003 -12:00', 'yyyy-mm-dd hh24:mi:ss.ff tzh:tzm'));

1 row created.

sql> select * from ff;

a                                                                               
---------------------------------------------------------------------------     
14-dec-06 07.45.09.90030000 pm -12:00                                           

sql>  insert into ff values(to_timestamp_tz('2006-12-14 19:45:09.9003 -12:00', 'yyyy-mm-dd hh24:mi:ss.ff tzh:tzm'));

1 row created.

sql>  insert into ff values(to_timestamp_tz('2006-12-14 19:45:09.9003 -13:00', 'yyyy-mm-dd hh24:mi:ss.ff tzh:tzm'))
                                       *
error at line 1:
ora-01874: time zone hour must be between -12 and 13

sql>  insert into ff values(to_timestamp_tz('2006-12-14 19:45:09.9003 13:00', 'yyyy-mm-dd hh24:mi:ss.ff tzh:tzm'))

1 row created.

--------------------------
注意缩写: "tzh" time zone hour, "tzm" time zone minute 
阅读(5096) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~
")); function link(t){ var href= $(t).attr('href'); href ="?url=" encodeuricomponent(location.href); $(t).attr('href',href); //setcookie("returnouturl", location.href, 60, "/"); }
网站地图