位置:首頁 > 數據庫 > SQLite教學 > SQLite Date&Time/日期時間

SQLite Date&Time/日期時間

SQLite支持5個日期和時間函數如下:

S.N. 函數 例子
1 date(timestring, modifiers...) This returns the date in this format: YYYY-MM-DD
2 time(timestring, modifiers...) This returns the time as HH:MM:SS
3 datetime(timestring, modifiers...) This returns YYYY-MM-DD HH:MM:SS
4 julianday(timestring, modifiers...) This returns the number of days since noon in Greenwich on November 24, 4714 B.C.
5 strftime(timestring, modifiers...) This returns the date formatted according to the format string specified as the first argument formatted as per formatters explained below.

上述五個日期和時間函數時間字符串作為參數。後跟零個或多個修飾符的時間字符串。 strftime()函數還需要一個格式字符串作為其第一個參數。下麵的部分將給予您詳細的時間字符串和改性劑的不同類型。

時間字符串:

一時間字符串可以在任何采用以下格式:

S.N. 時間字符串 例子
1 YYYY-MM-DD 2010-12-30
2 YYYY-MM-DD HH:MM 2010-12-30 12:10
3 YYYY-MM-DD HH:MM:SS.SSS 2010-12-30 12:10:04.100
4 MM-DD-YYYY HH:MM 30-12-2010 12:10
5 HH:MM 12:10
6 YYYY-MM-DDTHH:MM 2010-12-30 12:10
7 HH:MM:SS 12:10:01
8 YYYYMMDD HHMMSS 20101230 121001
9 now 2013-05-07

可以使用“T”作為一個文字字符分隔日期和時間。

修飾符

隨後的時間字符串可以由零個或多個的修飾符將改變日期和/或任何上述五大功能返回時間。修飾符應用於從左側到右側和下麵的修飾符可在SQLite使用:

  • NNN days

  • NNN hours

  • NNN minutes

  • NNN.NNNN seconds

  • NNN months

  • NNN years

  • start of month

  • start of year

  • start of day

  • weekday N

  • unixepoch

  • localtime

  • utc

格式化:

SQLite 提供了非常方便的函數strftime() 來格式化任何日期和時間。可以使用以下替換格式化的日期和時間:

替代 描述
%d Day of month, 01-31
%f Fractional seconds, SS.SSS
%H Hour, 00-23
%j Day of year, 001-366
%J Julian day number, DDDD.DDDD
%m Month, 00-12
%M Minute, 00-59
%s Seconds since 1970-01-01
%S Seconds, 00-59
%w Day of week, 0-6 (0 is Sunday)
%W Week of year, 01-53
%Y Year, YYYY
%% % symbol

例子

讓我們嘗試不同的例子,現在使用SQLite的提示的。以下計算當前的日期:

sqlite> SELECT date('now');
2013-05-07

以下計算當前月份的最後一天:

sqlite> SELECT date('now','start of month','+1 month','-1 day');
2013-05-31

以下計算給定的日期和時間的UNIX時間戳1092941466:

sqlite> SELECT datetime(1092941466, 'unixepoch');
2004-08-19 18:51:06

以下計算UNIX時間戳1092941466抵消本地時區的日期和時間:

sqlite> SELECT datetime(1092941466, 'unixepoch', 'localtime');
2004-08-19 11:51:06

以下計算當前的UNIX時間戳:

sqlite> SELECT datetime(1092941466, 'unixepoch', 'localtime');
1367926057

以下計算的美國“獨立宣言”簽署以來的天數:

sqlite> SELECT julianday('now') - julianday('1776-07-04');
86504.4775830326

以下一個特彆的時刻在2004年以來的秒數計算:

sqlite> SELECT strftime('%s','now') - strftime('%s','2004-01-01 02:34:56');
295001572

以下計算日期為當年10月的第一個星期二:

sqlite> SELECT date('now','start of year','+9 months','weekday 2');
2013-10-01

以下計算時間自UNIX紀元秒(類似strftime('%s','now') ,除了包括小數部分):

sqlite> SELECT (julianday('now') - 2440587.5)*86400.0;
1367926077.12598

UTC與本地時間值之間進行轉換,格式化日期時間,使用UTC或localtime修改如下:

sqlite> SELECT time('12:00', 'localtime');
05:00:00
sqlite>  SELECT time('12:00', 'utc');
19:00:00