av激情亚洲男人的天堂国语,日韩欧美精品一中文字幕,无码av一区二区三区无码,国产又色又爽又刺激的a片,国产又色又爽又刺激的a片

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

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

專注于為中小企業(yè)提供網(wǎng)站建設(shè)、成都網(wǎng)站建設(shè)服務(wù),電腦端+手機(jī)端+微信端的三站合一,更高效的管理,為中小企業(yè)宜良免費(fèi)做網(wǎng)站提供優(yōu)質(zhì)的服務(wù)。我們立足成都,凝聚了一批互聯(lián)網(wǎng)行業(yè)人才,有力地推動了上1000+企業(yè)的穩(wěn)健成長,幫助中小企業(yè)通過網(wǎng)站建設(shè)實(shí)現(xiàn)規(guī)模擴(kuò)充和轉(zhuǎn)變。

DB2時(shí)間函數(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)前時(shí)間戳
select current timestamp from sysibm.sysdummy1;
values current timestamp;

--要使當(dāng)前時(shí)間或當(dāng)前時(shí)間戳記調(diào)整到 GMT/CUT,則把當(dāng)前的時(shí)間或時(shí)間戳記減去當(dāng)前時(shí)區(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)前時(shí)
values hour(current timestamp);

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

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

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

--從時(shí)間戳記單獨(dú)抽取出日期和時(shí)間

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

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

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

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

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

--時(shí)間和日期換成字符串

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

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

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");

--計(jì)算兩個(gè)時(shí)間戳記之間的時(shí)差:

--秒的小數(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")));
--小時(shí)為單位
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")));


新聞標(biāo)題:DB2數(shù)據(jù)庫中時(shí)間函總結(jié)
標(biāo)題鏈接:http://uogjgqi.cn/article/dhjdjii.html
掃二維碼與項(xiàng)目經(jīng)理溝通

我們在微信上24小時(shí)期待你的聲音

解答本文疑問/技術(shù)咨詢/運(yùn)營咨詢/技術(shù)建議/互聯(lián)網(wǎng)交流