SQLite 日期和时间函数
在SQLite中,日期和时间()函数用于检索当前日期和时间。日期和时间函数使用IS0-8601日期和时间格式的子集。
有6个不同的日期和时间函数,以不同的格式返回和计算日期和时间:
- SQLite date()函数
- SQLite datetime()函数
- SQLite julianday()函数
- SQLite now()函数
- SQLite strftime()函数
- SQLite time()函数
索引 | 函数 | 描述 |
---|---|---|
1 | SQLite date() 函数 | SQLite date() 函数用于计算日期并以 ‘YYYY-MM-DD’ 格式返回。 |
2 | SQLite datetime() 函数 | SQLite datetime() 函数用于计算日期/时间值,并以 ‘YYYY-MM-DD HH:MM:SS’ 格式返回。 |
3 | SQLite julianday() 函数 | SQLite julianday() 函数根据儒略日返回日期。儒略日是指格里高利历中4714年11月24日下午12点格林尼治时间以来的天数。它将日期返回为浮点数。 |
4 | SQLite now() 函数 | 实际上 now 并不是一个函数,而是一个时间字符串参数,用于在各种SQLite函数中检索当前日期和时间。 |
5 | SQLite strftime() 函数 | SQLite strftime() 函数用于以格式化的方式返回日期,并方便您在日期上进行计算。 |
6 | SQLite time() 函数 | SQLite time() 函数用于计算时间并以 ‘HH-MM-SS’ 格式返回。 |