自拍偷在线精品自拍偷,亚洲欧美中文日韩v在线观看不卡

DB2數(shù)據(jù)庫中時間函總結(jié)

數(shù)據(jù)庫
本文將為您詳細(xì)介紹DB2數(shù)據(jù)庫中時間函數(shù)的分類介紹,供您參考,希望能對您有所幫助。

本文將為您詳細(xì)介紹DB2數(shù)據(jù)庫中時間函數(shù)的分類介紹,供您參考,希望能對您有所幫助。

DB2時間函數(shù)簡單總結(jié):

代碼
--獲取當(dāng)前日期:

select current date from sysibm.sysdummy1;
values current date;

--獲取當(dāng)前日期
select current time from sysibm.sysdummy1;
values current time;
--獲取當(dāng)前時間戳
select current timestamp from sysibm.sysdummy1;
values current timestamp;

--要使當(dāng)前時間或當(dāng)前時間戳記調(diào)整到 GMT/CUT,則把當(dāng)前的時間或時間戳記減去當(dāng)前時區(qū)寄存器:

values current time -current timezone;
values current timestamp -current timezone;

--獲取當(dāng)前年份

values year(current timestamp);

--獲取當(dāng)前月
values month(current timestamp);#p#

--獲取當(dāng)前日
values day(current timestamp);

--獲取當(dāng)前時
values hour(current timestamp);

--獲取分鐘
values minute(current timestamp);

--獲取秒
values second(current timestamp);

--獲取毫秒
values microsecond(current timestamp);

--從時間戳記單獨抽取出日期和時間

values date(current timestamp);
values VARCHAR_FORMAT(current TIMESTAMP,"yyyy-mm-dd");
values char(current date);
values time(current timestamp);

--執(zhí)行日期和時間的計算

values current date+1 year;   
values current date+3 years+2 months +15 days;
values current time +5 hours -3 minutes +10 seconds;

--計算兩個日期之間的天數(shù)#p#

values days(current date)- days(date("2010-02-20"));

--時間和日期換成字符串

values char(current date);
values char(current time);

--要將字符串轉(zhuǎn)換成日期或時間值

values timestamp("2010-03-09-22.43.00.000000");
values timestamp("2010-03-09 22:44:36");
values date("2010-03-09");
values date("03/09/2010");
values time("22:45:27");
values time("22.45.27");

--計算兩個時間戳記之間的時差:

--秒的小數(shù)部分為單位
values timestampdiff(1,char(current timestamp - timestamp("2010-01-01-00.00.00")));
--秒為單位
values timestampdiff(2,char(current timestamp - timestamp("2010-01-01-00.00.00")));
--分為單位
values timestampdiff(4,char(current timestamp - timestamp("2010-01-01-00.00.00")));
--小時為單位
values timestampdiff(8,char(current timestamp - timestamp("2010-01-01-00.00.00")));
--天為單位
values timestampdiff(16,char(current timestamp - timestamp("2010-01-01-00.00.00")));
--周為單位
values timestampdiff(32,char(current timestamp - timestamp("2010-01-01-00.00.00")));
--月為單位
values timestampdiff(64,char(current timestamp - timestamp("2010-01-01-00.00.00")));
--季度為單位
values timestampdiff(128,char(current timestamp - timestamp("2010-01-01-00.00.00")));
--年為單位
values timestampdiff(256,char(current timestamp - timestamp("2010-01-01-00.00.00")));

責(zé)任編輯:段燃 來源: 百維信息科技
相關(guān)推薦

2011-08-18 19:10:27

DB2數(shù)據(jù)庫命令

2010-09-01 15:23:59

DB2字段類型

2011-03-15 11:19:45

DB2數(shù)據(jù)庫catalog

2010-09-01 10:17:14

DB2日志

2010-11-01 11:30:41

DB2數(shù)據(jù)庫權(quán)限

2010-09-30 11:49:21

DB2數(shù)據(jù)庫權(quán)限

2010-11-03 16:21:18

DB2數(shù)據(jù)庫授權(quán)

2010-08-26 16:15:25

DB2數(shù)據(jù)庫管理

2010-08-25 10:50:48

DB2數(shù)據(jù)庫

2011-03-11 16:02:03

DB2數(shù)據(jù)庫安裝

2010-08-11 08:39:57

DB2 數(shù)據(jù)庫

2009-07-06 17:34:26

遠(yuǎn)程復(fù)制DB2

2010-07-28 11:05:57

DB2數(shù)據(jù)庫

2010-11-01 14:19:20

DB2字符串

2010-09-06 10:00:00

DB2數(shù)據(jù)庫

2010-08-26 16:34:12

DB2Excel讀取

2010-09-07 09:31:03

DB2數(shù)據(jù)庫鎖表

2010-08-31 14:04:49

DB2驅(qū)動

2010-08-16 14:45:15

DB2數(shù)據(jù)庫

2010-08-25 11:11:59

DB2JDBC連接
點贊
收藏

51CTO技術(shù)棧公眾號