📜  SQLite-日期和时间

📅  最后修改于: 2021-01-04 05:10:06             🧑  作者: Mango


SQLite支持五个日期和时间函数,如下所示:

Sr.No. Function Example
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()函数还将格式字符串作为其第一个参数。下一节将详细介绍不同类型的时间字符串和修饰符。

时间字符串

时间字符串可以采用以下任何格式-

Sr.No. Time String Example
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天
  • NNN小时
  • NNN分钟
  • NNN.NNNN秒
  • NNN月
  • NNN年
  • 月初
  • 年初
  • 一天的开始
  • 工作日N
  • 统一纪元
  • 当地时间
  • 世界标准时间

格式化程序

SQLite提供了一个非常方便的函数strftime()来格式化任何日期和时间。您可以使用以下替代来格式化日期和时间。

Substitution Description
%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 13:51:06

以下命令计算当前的UNIX时间戳。

sqlite> SELECT strftime('%s','now');
1393348134

以下命令计算自美国独立宣言签署以来的天数。

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

以下命令计算自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