SQLite 日期时间

在SQLite中,date and time()函数用于检索当前日期和时间。日期和时间函数使用 IS0-8601 日期和时间格式的子集。

有 6 种不同的日期和时间函数以不同的格式返回并计算日期和时间:

  • SQLite date()  函数
  • SQLite datetime() 函数
  • SQLite julianday() 函数
  • SQLite now() 函数
  • SQLite strftime() 函数
  • SQLite time() 函数
功能 描述
SQLite date() 函数 SQLite date() 函数用于计算日期并以“YYYY-MM-DD”格式返回它。
SQLite datetime() 函数 SQLite datetime() 函数用于计算日期/时间值,并以“YYYY-MM-DD HH:MM:SS”格式返回它。
SQLite julianday() 函数 SQLite julianday() 函数根据 julian day 返回日期。儒略日是自公历公元前 24 年 4714 月 12 日格林威治时间中午 00:<> 以来的天数。 它以浮点数的形式返回日期。
SQLite now() 函数 实际上现在不是一个函数。而不是在各种SQLite函数中用于检索当前日期和时间的时间字符串参数。
SQLite strftime() 函数 SQLite strftime() 函数用于以格式化的方式返回日期,也便于您计算日期。
SQLite time() 函数 SQLite time() 函数用于计算时间并以 'HH-MM-SS' 格式返回。

热门文章

优秀文章