本文的目的是介绍python中关于时间和日期函数的常用计算总结的详细情况,特别关注python日期运算的相关信息。我们将通过专业的研究、有关数据的分析等多种方式,为您呈现一个全面的了解python中关
本文的目的是介绍python中关于时间和日期函数的常用计算总结的详细情况,特别关注python 日期运算的相关信息。我们将通过专业的研究、有关数据的分析等多种方式,为您呈现一个全面的了解python中关于时间和日期函数的常用计算总结的机会,同时也不会遗漏关于#小手一抬学Python# 玩转时间和日期库【附源码】、C++ 时间和日期函数的精辟解析、mysql 中 时间和日期函数、Mysql 时间和日期函数的知识。
本文目录一览:- python中关于时间和日期函数的常用计算总结(python 日期运算)
- #小手一抬学Python# 玩转时间和日期库【附源码】
- C++ 时间和日期函数的精辟解析
- mysql 中 时间和日期函数
- Mysql 时间和日期函数
python中关于时间和日期函数的常用计算总结(python 日期运算)
python中关于时间和日期函数有time和datatime
%a 本地简化星期名称 %A 本地完整星期名称 %b 本地简化的月份名称 %B 本地完整的月份名称 %c 本地相应的日期表示和时间表示 %j 年内的一天(001-366) %p 本地A.M.或P.M.的等价符 %U 一年中的星期数(00-53)星期天为星期的开始 %w 星期(0-6),星期天为星期的开始 %W 一年中的星期数(00-53)星期一为星期的开始 %x 本地相应的日期表示 %X 本地相应的时间表示 %Z 当前时区的名称 %% %号本身#小手一抬学Python# 玩转时间和日期库【附源码】
Python 日期与时间
在 Python 中是没有原生数据类型支持时间的,日期与时间的操作需要借助三个模块,分别是 time
、datetime
、calendar
。
time
模块可以操作 C 语言库中的时间相关函数,时钟时间与处理器运行时间都可以获取。 datetime
模块提供了日期与时间的高级接口。 calendar
模块为通用日历相关函数,用于创建数周、数月、数年的周期性事件。
在学习之前,还有一些术语要补充一下,这些术语你当成惯例即可。这里在 Python 官方文档中也有相关说明,不过信息比较多,橡皮擦为你摘录必须知道的一部分。
epoch(纪元)
是时间开始的点,其值取决于平台。
对于 Unix, epoch(纪元)
是 1970年1月1日00:00:00(UTC)
。要找出给定平台上的 epoch
,请使用 time.gmtime(0)
进行查看,例如橡皮擦电脑显示:
time.struct_time(tm_year=1970, tm_mon=1, tm_mday=1, tm_hour=0, tm_min=0, tm_sec=0, tm_wday=3, tm_yday=1, tm_isdst=0)
术语 纪元秒数
是指自 epoch (纪元)
时间点以来经过的总秒数,通常不包括闰秒。 在所有符合 POSIX 标准的平台上,闰秒都不会记录在总秒数中。
程序员中常把 纪元秒数
称为 时间戳
。
time 时间模块
该模块核心为控制时钟时间。
get\_clock\_info 函数
该函数获取时钟的基本信息,得到的值因不同系统存在差异,函数原型比较简单:
time.get_clock_info(name)
其中 name
可以取下述值:
monotonic
:time.monotonic()perf_counter
: time.perf\_counter()process_time
: time.process\_time()thread_time
: time.thread\_time()time
: time.time()
该函数的返回值具有以下属性:
adjustable
: 返回 True 或者 False。如果时钟可以自动更改(例如通过 NTP 守护程序)或由系统管理员手动更改,则为 True ,否则为 False ;implementation
: 用于获取时钟值的基础 C 函数的名称,就是调用底层 C 的函数;monotonic
:如果时钟不能倒退,则为 True ,否则为 False;resolution
: 以秒为单位的时钟分辨率( float )。
import time
available_clocks = [
(''clock'', time.clock),
(''monotonic'', time.monotonic),
(''perf_counter'', time.perf_counter),
(''process_time'', time.process_time),
(''time'', time.time),
]
for clock_name, func in available_clocks:
print(''''''
{name}:
adjustable : {info.adjustable}
implementation: {info.implementation}
monotonic : {info.monotonic}
resolution : {info.resolution}
current : {current}
''''''.format(
name=clock_name,
info=time.get_clock_info(clock_name),
current=func()))
运行结果如下图所示。
上图显示橡皮擦的计算机在 clock
与 perf_counter
中,调用底层 C 函数是一致的。
获取时间戳
在 Python 中通过 time.time()
函数获取纪元秒数,它可以把从 epoch
开始之后的秒数以浮点数格式返回。
import time
print(time.time())
# 输出结果 1615257195.558105
时间戳大量用于计算时间相关程序,属于必须掌握内容。
获取可读时间
时间戳主要用于时间上的方便计算,对于人们阅读是比较难理解的,如果希望获取可读时间,使用 ctime()
函数获取。
import time
print(time.ctime())
# 输出内容:Tue Mar 9 10:35:51 2021
如何将时间戳转换为可读时间,使用 localtime
函数即可。
localtime = time.localtime(time.time())
print("本地时间为 :", localtime)
输出结果为 <class ''time.struct_time''>
类型数据,后文将对其进行格式化操作:
本地时间为 : time.struct_time(tm_year=2021, tm_mon=3, tm_mday=9, tm_hour=10, tm_min=37, tm_sec=27, tm_wday=1, tm_yday=68, tm_isdst=0)
上述代码中的时间戳最小值是 0,最大值由于 Python 环境和操作系统决定,我本地 64 位操作系统进行测试的时候,得到的数据如下:
import time
localtime = time.localtime(0)
print("时间为 :", localtime)
# 时间为 : time.struct_time(tm_year=1970, tm_mon=1, tm_mday=1, tm_hour=8, tm_min=0, tm_sec=0, tm_wday=3, tm_yday=1, tm_isdst=0)
localtime = time.localtime(32536799999)
print("时间为 :", localtime)
# 时间为 : time.struct_time(tm_year=3001, tm_mon=1, tm_mday=19, tm_hour=15, tm_min=59, tm_sec=59, tm_wday=0, tm_yday=19, tm_isdst=0)
localtime = time.localtime(99999999999)
print("时间为 :", localtime)
# OSError: [Errno 22] Invalid argument
print(type(localtime))
单调时间 monotonic time
monotonic time
从系统启动开始计时,从 0 开始单调递增。
操作系统的时间可能不是从 0 开始,而且会因为时间出错而回调。
该函数原型如下,不需要任何参数,返回一个浮点数,表示小数秒内的单调时钟的值:
time.monotonic()
测试代码如下:
print("单调时间",time.monotonic())
# 输出:单调时间 12279.244
处理器时钟时间
time()
函数返回的是纪元秒数(时间戳), clock()
函数返回的是处理器时钟时间。
该函数函数的返回值:
- 在第一次调用的时候,返回的是程序运行的实际时间;
在第二次之后的调用,返回的是自第一次调用后到这次调用的时间间隔。
需要注意的是 Python 3.8 已移除
clock()
函数,用time.perf_counter()
或time.process_time()
方法替代。
t0 = time.clock()
# 运行一段代码
print(time.clock() - t0, "程序运行时间")
我使用的 Python 版本较高,提示异常如下:
time.clock has been deprecated in Python 3.3 and will be removed from Python 3.8: use time.perf_counter or time.process_time instead t0 = time.clock()
性能计数器 time.perf\_counter
perf_counter()
函数的 epoch
(纪元)是未定义的。一般使用该函数都是为了比较和计算,不是为了用作绝对时间,该点需要注意下。
该函数用于测量较短持续时间的具有最高有效精度的时钟,包括睡眠状态消耗的时间,使用两次调用才会有效。
测试代码如下:
t0 = time.perf_counter()
# 运行一段代码
for i in range(100000):
pass
print("程序运行时间", time.perf_counter() - t0)
与其类似的函数有 perf_counter_ns()
、process_time()
、process_time_ns()
,具体可以查询手册进行学习,先掌握 perf_counter()
函数即可。
时间组件
上文已经涉及了时间组件相关的知识,通过 localtime
得到的 struct_time
类型的数据。
这里涉及到的函数有 gmtime()
返回 UTC 中的当前时间,localtime()
返回当前时区对应的时间,mktime()
接收 struce_time
类型数据并将其转换成浮点型数值,即时间戳。
print("*"*10)
print(time.gmtime())
print("*"*10)
print(time.localtime())
print("*"*10)
print(time.mktime(time.localtime()))
struct\_time 类型包含的内容
上述代码返回的数据格式为:
time.struct_time(tm_year=2021, tm_mon=3, tm_mday=9, tm_hour=12, tm_min=50, tm_sec=35, tm_wday=1, tm_yday=68, tm_isdst=0)
其中各值可以根据英文含义进行理解 :tm_year
年份(range[1,12]),tm_mon
月份(range[1,12]),tm_mday
天数(range[1,31]),tm_hour
天数(range[0,23]),tm_min
分钟 (range[0,59]), tm_sec
秒数 (range[0,61]), tm_wday
星期 (range[0,6],0 是星期日), tm_yday
一年中的一天(range[1,366] ),tm_isdst
在夏令时生效时设置为 1,而在夏令时不生效时设置为 0,值-1 表示这是未知的。
9.1.8 解析和格式化时间
strptime()
和 strftime()
函数可以使时间值在 struct_time
表示和字符串表示之间相互转换。
对于 strftime
函数,其中的参数参考官方即可。
x = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())
print(x)
这里的学习,没有什么难度大的点,孰能生巧的知识。
strptime 函数的应用
x = time.strftime("%Y-%m-%d %H:%M:%S", time.localtime())
print(x)
# 方向操作,字符串格式化成 time.struct_time
struct_time = time.strptime(x, "%Y-%m-%d %H:%M:%S")
print(struct_time)
需要记忆的就是 strftime
与 strptime
函数只有中间的字符不同,一个是 f
,另一个是 p
。
time 小节
对于 time 模块,sleep
函数属于必备知识点,但是太常用了,你肯定已经很熟悉了。
对于模块的学习,最权威的就是官方手册了,[time 模块]
datetime 模块
该模块比 time
模块高级了很多,并且对 time
模块进行了封装,提供的功能更加强大了。
在 datetime
模块中,Python 提供了 5 个主要的对象类,分别如下:
datetime
:允许同时操作时间和日期;date
:只操作日期;time
:只操作时间;timedelta
:用于操作日期以及测量时间跨度;tzinfo
:处理时区。
date 类
优先展示部分该类的属性和方法,都是记忆层面的知识。
min
、max
:date 对象能表示的最大、最小日期;resolution
:date 对象表示日期的最小单位,返回天;today()
:返回表示当前本地日期的 date 对象;fromtimestamp(timestamp)
:根据时间戳,返回一个 date 对象。
测试代码如下:
from datetime import date
import time
print(''date.min:'', date.min)
print(''date.max:'', date.max)
print(''date.resolution:'', date.resolution)
print(''date.today():'', date.today())
print(''date.fromtimestamp():'', date.fromtimestamp(time.time()))
输出结果:
date.min: 0001-01-01
date.max: 9999-12-31
date.resolution: 1 day, 0:00:00
date.today(): 2021-03-09
date.fromtimestamp(): 2021-03-09
date 对象的属性和方法
通过下述代码创建一个 date 对象:
d = date(year=2021,month=3,day=9)
print(d)
该对象具备下述属性和方法:
d.year
:返回年;d.month
:返回月;d.day
:返回日;d.weekday()
:返回 weekday,如果是星期一,返回 0;如果是星期 2,返回 1,以此类推;d.isoweekday()
:返回 weekday,如果是星期一,返回 1;如果是星期 2,返回 2,以此类推;d.isocalendar()
:返回格式如(year, wk num, wk day);d.isoformat()
:返回格式如’YYYY-MM-DD’的字符串;d.strftime(fmt)
:自定义格式化字符串,与 time 模块中的 strftime 类似。
time 类
time
类定义的类属性:
min
、max
:time 类所能表示的最小、最大时间。其中,time.min = time(0, 0, 0, 0), time.max = time(23, 59, 59, 999999)
;- resolution:时间的最小单位,这里是 1 微秒;
通过其构造函数可以创建一个 time
对象。
t = time(hour=20, minute=20, second=40)
print(t)
time
类提供的实例方法和属性:
t.hour
、t.minute
、t.second
、t.microsecond
:时、分、秒、微秒;t.tzinfo
:时区信息;t.isoformat()
:返回型如”HH:MM:SS”格式的字符串时间表示;t.strftime(fmt)
:返回自定义格式化字符串。
datetime 类
该类是 date
类与 time
类的结合体,很多属性和方法前文已经介绍,再补充一些比较常用的属性和方法。
获取当前的日期与时间:
from datetime import datetime
dt = datetime.now()
print(dt)
获取时间戳:
dt = datetime.now()
# 使用 datetime 的内置函数 timestamp()
stamp = datetime.timestamp(dt)
print(stamp)
timedelta 类
通过 timedelta
函数返回一个 timedelta
时间间隔对象,该函数没有必填参数,如果写入一个整数就是间隔多少天的的意思。
# 间隔 10 天
timedelta(10)
# 跨度为1 周
timedelta(weeks=1)
两个时间间隔对象可以彼此之间相加或相减,返回的仍是一个时间间隔对象。
一个 datetime 对象如果减去一个时间间隔对象,那么返回的对应减去之后的 datetime 对象,然后两个 datetime 对象如果相减,返回的是一个时间间隔对象。
更多关于 datetime 类使用的知识,可以参考 [官方手册]。
calendar 模块(日历)
此模块的函数都是日历相关的,例如打印某月的字符月历。
calendar
模块定义了 Calendar 类,它封装了值的计算, 例如给定月份或年份中周的日期。通过 TextCalendar 和 HTMLCalendar 类可以生成预格式化的输出。
基本代码:
import calendar
c = calendar.TextCalendar(calendar.SUNDAY)
c.prmonth(2021, 3)
上述代码,默认是从周日开始的,输出结果:
March 2021
Su Mo Tu We Th Fr Sa
1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30 31
该模块使用频率较低,详细使用参考地址 。
这篇博客的总结
本篇博客为大家补充了一下时间和日期库的相关知识,希望能进入你的收藏夹。
C++ 时间和日期函数的精辟解析
C++ 时间和日期函数的精辟解析
C++ 提供了丰富的函数库,用于处理时间和日期信息。了解这些函数的基本知识对于编写管理和操作时间相关数据的程序至关重要。
时间结构和类
立即学习“C++免费学习笔记(深入)”;
- time_t:表示自纪元(通常为 1970 年 1 月 1 日格林威治标准时间午夜)以来的秒数。
- tm:一个结构体,包含时间组件(如年、月、日、时、分和秒)。
- std::time_t:C++11 引入的类型,本质上与 time_t 相同。
- std::tm:C++11 引入的类型,本质上与 tm 相同。
相关函数
1. 取回当前时间
time_t current_time = time(nullptr); std::tm* time_info = localtime(¤t_time);
2.
char buffer[80]; strftime(buffer, sizeof(buffer), "%Y-%m-%d %H:%M:%S", time_info); std::cout << buffer << std::endl;
3. 转换时间戳
time_t timestamp = 1664262736; std::tm* time_info = gmtime(×tamp);
4. 计算时间差
time_t start_time = time(nullptr); // ...执行耗时的操作... time_t end_time = time(nullptr); std::cout << "Elapsed time: " << end_time - start_time << " seconds" << std::endl;
5. 操纵时间组件
std::tm tomorrow = *time_info; tomorrow.tm_mday += 1; // 将日期增加一天
实战案例:简单的倒计时程序
#include <iostream> #include <chrono> int main() { // 获取当前时间并设定倒计时天数 auto start = std::chrono::system_clock::now(); int days = 10; // 生成结束时间 auto end = start + std::chrono::days(days); // 持续显示倒计时 while (start < end) { // 计算剩余天数 auto remaining = std::chrono::duration_cast<std::chrono::days>(end - start); // 格式化输出并清屏 std::cout << "\rRemaining days: " << remaining.count() << std::flush; std::cout.flush(); // 每秒更新时间 std::this_thread::sleep_for(std::chrono::seconds(1)); start = std::chrono::system_clock::now(); } std::cout << std::endl << "Countdown complete!" << std::endl; return 0; }
通过掌握 C++ 的时间和日期函数,你可以轻松编写应用程序来管理、操作和显示时间相关数据。
以上就是C++ 时间和日期函数的精辟解析的详细内容,更多请关注php中文网其它相关文章!
mysql 中 时间和日期函数
一、MySQL 获得当前日期时间 函数1.1 获得当前日期 + 时间(date + time)函数:now()
mysql > select now();
+ -- -------------------+
| now() |
+ -- -------------------+
| 2008 - 08 - 08 22 : 20 : 46 |
+ -- -------------------+
除了 now() 函数能获得当前的日期时间外,MySQL 中还有下面的函数:
current_timestamp ()
, current_timestamp
,localtime()
,localtime
,localtimestamp -- (v4.0.6)
,localtimestamp() -- (v4.0.6)
这些日期时间函数,都等同于 now()。鉴于 now() 函数简短易记,建议总是使用 now() 来替代上面列出的函数。
1.2 获得当前日期 + 时间(date + time)函数:sysdate()
sysdate() 日期时间函数跟 now() 类似,不同之处在于:now() 在执行开始时值就得到了, sysdate() 在函数执行时动态得到值。看下面的例子就明白了:
mysql > select now(), sleep( 3 ), now();
+ -- -------------------+----------+---------------------+
| now() | sleep( 3 ) | now() |
+ -- -------------------+----------+---------------------+
| 2008 - 08 - 08 22 : 28 : 21 | 0 | 2008 - 08 - 08 22 : 28 : 21 |
+ -- -------------------+----------+---------------------+
mysql > select sysdate(), sleep( 3 ), sysdate();
+ -- -------------------+----------+---------------------+
| sysdate() | sleep( 3 ) | sysdate() |
+ -- -------------------+----------+---------------------+
| 2008 - 08 - 08 22 : 28 : 41 | 0 | 2008 - 08 - 08 22 : 28 : 44 |
+ -- -------------------+----------+---------------------+
可以看到,虽然中途 sleep 3 秒,但 now() 函数两次的时间值是相同的; sysdate() 函数两次得到的时间值相差 3 秒。MySQL Manual 中是这样描述 sysdate() 的: Return the time at which the function executes。
sysdate() 日期时间函数,一般情况下很少用到。
2 . 获得当前日期(date)函数:curdate()
mysql > select curdate();
+ -- ----------+
| curdate() |
+ -- ----------+
| 2008 - 08 - 08 |
+ -- ----------+
其中,下面的两个日期函数等同于 curdate():
current_date ()
, current_date
3 . 获得当前时间(time)函数:curtime()
mysql > select curtime();
+ -- ---------+
| curtime() |
+ -- ---------+
| 22 : 41 : 30 |
+ -- ---------+
其中,下面的两个时间函数等同于 curtime():
current_time ()
, current_time
4 . 获得当前 UTC 日期时间函数:utc_date(), utc_time(), utc_timestamp()
mysql > select utc_timestamp(), utc_date(), utc_time(), now()
+ -- -------------------+------------+------------+---------------------+
| utc_timestamp() | utc_date() | utc_time() | now() |
+ -- -------------------+------------+------------+---------------------+
| 2008 - 08 - 08 14 : 47 : 11 | 2008 - 08 - 08 | 14 : 47 : 11 | 2008 - 08 - 08 22 : 47 : 11 |
+ -- -------------------+------------+------------+---------------------+
因为我国位于东八时区,所以本地时间 = UTC 时间 + 8 小时。UTC 时间在业务涉及多个国家和地区的时候,非常有用。
二、MySQL 日期时间 Extract(选取) 函数。
1 . 选取日期时间的各个部分:日期、时间、年、季度、月、日、小时、分钟、秒、微秒
set @dt = '' 2008-09-10 07:15:30.123456 '' ;
select date( @dt ); -- 2008-09-10
select time( @dt ); -- 07:15:30.123456
select year ( @dt ); -- 2008
select quarter( @dt ); -- 3
select month ( @dt ); -- 9
select week( @dt ); -- 36
select day ( @dt ); -- 10
select hour( @dt ); -- 7
select minute( @dt ); -- 15
select second( @dt ); -- 30
select microsecond( @dt ); -- 123456
2 . MySQL Extract() 函数,可以上面实现类似的功能:
set @dt = '' 2008-09-10 07:15:30.123456 '' ;
select extract( year from @dt ); -- 2008
select extract(quarter from @dt ); -- 3
select extract( month from @dt ); -- 9
select extract(week from @dt ); -- 36
select extract( day from @dt ); -- 10
select extract(hour from @dt ); -- 7
select extract(minute from @dt ); -- 15
select extract(second from @dt ); -- 30
select extract(microsecond from @dt ); -- 123456
select extract(year_month from @dt ); -- 200809
select extract(day_hour from @dt ); -- 1007
select extract(day_minute from @dt ); -- 100715
select extract(day_second from @dt ); -- 10071530
select extract(day_microsecond from @dt ); -- 10071530123456
select extract(hour_minute from @dt ); -- 715
select extract(hour_second from @dt ); -- 71530
select extract(hour_microsecond from @dt ); -- 71530123456
select extract(minute_second from @dt ); -- 1530
select extract(minute_microsecond from @dt ); -- 1530123456
select extract(second_microsecond from @dt ); -- 30123456
MySQL Extract() 函数除了没有date(),time() 的功能外,其他功能一应具全。并且还具有选取‘day_microsecond’ 等功能。注意这里不是只选取 day 和 microsecond,而是从日期的 day 部分一直选取到 microsecond 部分。够强悍的吧!
MySQL Extract() 函数唯一不好的地方在于:你需要多敲几次键盘。
3 . MySQL dayof… 函数:dayofweek(), dayofmonth(), dayofyear()
分别返回日期参数,在一周、一月、一年中的位置。
set @dt = '' 2008-08-08 '' ;
select dayofweek( @dt ); -- 6
select dayofmonth( @dt ); -- 8
select dayofyear( @dt ); -- 221
日期 ‘ 2008 - 08 - 08 ′ 是一周中的第 6 天( 1 = Sunday, 2 = Monday, …, 7 = Saturday);一月中的第 8 天;一年中的第 221 天。
4 . MySQL week… 函数:week(), weekofyear(), dayofweek(), weekday(), yearweek()
set @dt = '' 2008-08-08 '' ;
select week( @dt ); -- 31
select week( @dt , 3 ); -- 32
select weekofyear( @dt ); -- 32
select dayofweek( @dt ); -- 6
select weekday( @dt ); -- 4
select yearweek( @dt ); -- 200831
MySQL week() 函数,可以有两个参数,具体可看手册。 weekofyear() 和 week() 一样,都是计算“某天”是位于一年中的第几周。 weekofyear( @dt ) 等价于 week( @dt , 3 )。
MySQL weekday() 函数和 dayofweek() 类似,都是返回“某天”在一周中的位置。不同点在于参考的标准, weekday:( 0 = Monday, 1 = Tuesday, …, 6 = Sunday); dayofweek:( 1 = Sunday, 2 = Monday, …, 7 = Saturday)
MySQL yearweek() 函数,返回 year ( 2008 ) + week 位置( 31 )。
5 . MySQL 返回星期和月份名称函数:dayname(), monthname()
set @dt = '' 2008-08-08 '' ;
select dayname( @dt ); -- Friday
select monthname( @dt ); -- August
思考,如何返回中文的名称呢?
6 . MySQL last_day() 函数:返回月份中的最后一天。
select last_day( '' 2008-02-01 '' ); -- 2008-02-29
select last_day( '' 2008-08-08 '' ); -- 2008-08-31
MySQL last_day() 函数非常有用,比如我想得到当前月份中有多少天,可以这样来计算:
mysql > select now(), day (last_day(now())) as days;
+ -- -------------------+------+
| now() | days |
+ -- -------------------+------+
| 2008 - 08 - 09 11 : 45 : 45 | 31 |
+ -- -------------------+------+
三、MySQL 日期时间计算函数
1 . MySQL 为日期增加一个时间间隔:date_add()
set @dt = now();
select date_add( @dt , interval 1 day ); -- add 1 day
select date_add( @dt , interval 1 hour); -- add 1 hour
select date_add( @dt , interval 1 minute); --

select date_add( @dt , interval 1 second);
select date_add( @dt , interval 1 microsecond);
select date_add( @dt , interval 1 week);
select date_add( @dt , interval 1 month );
select date_add( @dt , interval 1 quarter);
select date_add( @dt , interval 1 year );
select date_add( @dt , interval - 1 day ); -- sub 1 day
MySQL adddate(), addtime()函数,可以用 date_add() 来替代。下面是 date_add() 实现 addtime() 功能示例:
mysql > set @dt = '' 2008-08-09 12:12:33 '' ;
mysql >
mysql > select date_add( @dt , interval '' 01:15:30 '' hour_second);
+ -- ----------------------------------------------+
| date_add( @dt , interval '' 01:15:30 '' hour_second) |
+ -- ----------------------------------------------+
| 2008 - 08 - 09 13 : 28 : 03 |
+ -- ----------------------------------------------+
mysql > select date_add( @dt , interval '' 1 01:15:30 '' day_second);
+ -- -----------------------------------------------+
| date_add( @dt , interval '' 1 01:15:30 '' day_second) |
+ -- -----------------------------------------------+
| 2008 - 08 - 10 13 : 28 : 03 |
+ -- -----------------------------------------------+
date_add() 函数,分别为 @dt 增加了“1小时 15分 30秒” 和 “1天 1小时 15分 30秒”。建议:总是使用 date_add() 日期时间函数来替代 adddate(), addtime()。
2 . MySQL 为日期减去一个时间间隔:date_sub()
mysql > select date_sub( '' 1998-01-01 00:00:00 '' , interval '' 1 1:1:1 '' day_second);
+ -- --------------------------------------------------------------+
| date_sub( '' 1998-01-01 00:00:00 '' , interval '' 1 1:1:1 '' day_second) |
+ -- --------------------------------------------------------------+
| 1997 - 12 - 30 22 : 58 : 59 |
+ -- --------------------------------------------------------------+
MySQL date_sub() 日期时间函数 和 date_add() 用法一致,不再赘述。另外,MySQL 中还有两个函数 subdate(), subtime(),建议,用 date_sub() 来替代。
3 . MySQL 另类日期函数:period_add(P,N), period_diff(P1,P2)
函数参数“P” 的格式为“YYYYMM” 或者 “YYMM”,第二个参数“N” 表示增加或减去 N month (月)。
MySQL period_add(P,N):日期加 / 减去N月。
mysql > select period_add( 200808 , 2 ), period_add( 20080808 , - 2 )
+ -- --------------------+-------------------------+
| period_add( 200808 , 2 ) | period_add( 20080808 , - 2 ) |
+ -- --------------------+-------------------------+
| 200810 | 20080806 |
+ -- --------------------+-------------------------+
MySQL period_diff(P1,P2):日期 P1 - P2,返回 N 个月。
mysql > select period_diff( 200808 , 200801 );
+ -- ---------------------------+
| period_diff( 200808 , 200801 ) |
+ -- ---------------------------+
| 7 |
+ -- ---------------------------+
在 MySQL 中,这两个日期函数,一般情况下很少用到。
4 . MySQL 日期、时间相减函数: datediff (date1,date2), timediff(time1,time2)
MySQL datediff (date1,date2):两个日期相减 date1 - date2,返回天数。
select datediff ( '' 2008-08-08 '' , '' 2008-08-01 '' ); -- 7
select datediff ( '' 2008-08-01 '' , '' 2008-08-08 '' ); -- -7
MySQL timediff(time1,time2):两个日期相减 time1 - time2,返回 time 差值。
select timediff( '' 2008-08-08 08:08:08 '' , '' 2008-08-08 00:00:00 '' ); -- 08:08:08
select timediff( '' 08:08:08 '' , '' 00:00:00 '' ); -- 08:08:08
注意:timediff(time1,time2) 函数的两个参数类型必须相同。
四、MySQL 日期转换函数、时间转换函数
1 . MySQL (时间、秒)转换函数:time_to_sec(time), sec_to_time(seconds)
select time_to_sec( '' 01:00:05 '' ); -- 3605
select sec_to_time( 3605 ); -- ''01:00:05''
2 . MySQL (日期、天数)转换函数:to_days(date), from_days(days)
select to_days( '' 0000-00-00 '' ); -- 0
select to_days( '' 2008-08-08 '' ); -- 733627
select from_days( 0 ); -- ''0000-00-00''
select from_days( 733627 ); -- ''2008-08-08''
3 . MySQL Str to Date (字符串转换为日期)函数:str_to_date( str , format)
select str_to_date( '' 08/09/2008 '' , '' %m/%d/%Y '' ); -- 2008-08-09
select str_to_date( '' 08/09/08 '' , '' %m/%d/%y '' ); -- 2008-08-09
select str_to_date( '' 08.09.2008 '' , '' %m.%d.%Y '' ); -- 2008-08-09
select str_to_date( '' 08:09:30 '' , '' %h:%i:%s '' ); -- 08:09:30
select str_to_date( '' 08.09.2008 08:09:30 '' , '' %m.%d.%Y %h:%i:%s '' ); -- 2008-08-09 08:09:30
可以看到,str_to_date( str ,format) 转换函数,可以把一些杂乱无章的字符串转换为日期格式。另外,它也可以转换为时间。“format” 可以参看 MySQL 手册。
4 . MySQL Date / Time to Str (日期 / 时间转换为字符串)函数:date_format(date,format), time_format(time,format)
mysql > select date_format( '' 2008-08-08 22:23:00 '' , '' %W %M %Y '' );
+ -- ----------------------------------------------+
| date_format( '' 2008-08-08 22:23:00 '' , '' %W %M %Y '' ) |
+ -- ----------------------------------------------+
| Friday August 2008 |
+ -- ----------------------------------------------+
mysql > select date_format( '' 2008-08-08 22:23:01 '' , '' %Y%m%d%H%i%s '' );
+ -- --------------------------------------------------+
| date_format( '' 2008-08-08 22:23:01 '' , '' %Y%m%d%H%i%s '' ) |
+ -- --------------------------------------------------+
| 20080808222301 |
+ -- --------------------------------------------------+
mysql > select time_format( '' 22:23:01 '' , '' %H.%i.%s '' );
+ -- -----------------------------------+
| time_format( '' 22:23:01 '' , '' %H.%i.%s '' ) |
+ -- -----------------------------------+
| 22.23 . 01 |
+ -- -----------------------------------+
MySQL 日期、时间转换函数:date_format(date,format), time_format(time,format) 能够把一个日期 / 时间转换成各种各样的字符串格式。它是 str_to_date( str ,format) 函数的 一个逆转换。
5 . MySQL 获得国家地区时间格式函数:get_format()
MySQL get_format() 语法:
get_format(date | time | datetime , '' eur '' | '' usa '' | '' jis '' | '' iso '' | '' internal ''
MySQL get_format() 用法的全部示例:
select get_format(date, '' usa '' ) ; -- ''%m.%d.%Y''
select get_format(date, '' jis '' ) ; -- ''%Y-%m-%d''
select get_format(date, '' iso '' ) ; -- ''%Y-%m-%d''
select get_format(date, '' eur '' ) ; -- ''%d.%m.%Y''
select get_format(date, '' internal '' ) ; -- ''%Y%m%d''
select get_format( datetime , '' usa '' ) ; -- ''%Y-%m-%d %H.%i.%s''
select get_format( datetime , '' jis '' ) ; -- ''%Y-%m-%d %H:%i:%s''
select get_format( datetime , '' iso '' ) ; -- ''%Y-%m-%d %H:%i:%s''
select get_format( datetime , '' eur '' ) ; -- ''%Y-%m-%d %H.%i.%s''
select get_format( datetime , '' internal '' ) ; -- ''%Y%m%d%H%i%s''
select get_format(time, '' usa '' ) ; -- ''%h:%i:%s %p''
select get_format(time, '' jis '' ) ; -- ''%H:%i:%s''
select get_format(time, '' iso '' ) ; -- ''%H:%i:%s''
select get_format(time, '' eur '' ) ; -- ''%H.%i.%s''
select get_format(time, '' internal '' ) ; -- ''%H%i%s''
MySQL get_format() 函数在实际中用到机会的比较少。
6 . MySQL 拼凑日期、时间函数:makdedate( year ,dayofyear), maketime(hour,minute,second)
select makedate( 2001 , 31 ); -- ''2001-01-31''
select makedate( 2001 , 32 ); -- ''2001-02-01''
select maketime( 12 , 15 , 30 ); -- ''12:15:30''
五、MySQL 时间戳( Timestamp )函数
1 . MySQL 获得当前时间戳函数: current_timestamp , current_timestamp ()
mysql > select current_timestamp , current_timestamp ();
+ -- -------------------+---------------------+
| current_timestamp | current_timestamp () |
+ -- -------------------+---------------------+
| 2008 - 08 - 09 23 : 22 : 24 | 2008 - 08 - 09 23 : 22 : 24 |
+ -- -------------------+---------------------+
2 . MySQL (Unix 时间戳、日期)转换函数:
unix_timestamp(),
unix_timestamp(date),
from_unixtime(unix_timestamp),
from_unixtime(unix_timestamp,format)
下面是示例:
select unix_timestamp(); -- 1218290027
select unix_timestamp( '' 2008-08-08 '' ); -- 1218124800
select unix_timestamp( '' 2008-08-08 12:30:00 '' ); -- 1218169800
select from_unixtime( 1218290027 ); -- ''2008-08-09 21:53:47''
select from_unixtime( 1218124800 ); -- ''2008-08-08 00:00:00''
select from_unixtime( 1218169800 ); -- ''2008-08-08 12:30:00''
select from_unixtime( 1218169800 , '' %Y %D %M %h:%i:%s %x '' ); -- ''2008 8th August 12:30:00 2008''
3 . MySQL 时间戳( timestamp )转换、增、减函数:
timestamp (date) -- date to timestamp
timestamp (dt,time) -- dt + time
timestampadd(unit,interval,datetime_expr) --
timestampdiff(unit,datetime_expr1,datetime_expr2) --
请看示例部分:
select timestamp ( '' 2008-08-08 '' ); -- 2008-08-08 00:00:00
select timestamp ( '' 2008-08-08 08:00:00 '' , '' 01:01:01 '' ); -- 2008-08-08 09:01:01
select timestamp ( '' 2008-08-08 08:00:00 '' , '' 10 01:01:01 '' ); -- 2008-08-18 09:01:01
select timestampadd( day , 1 , '' 2008-08-08 08:00:00 '' ); -- 2008-08-09 08:00:00
select date_add( '' 2008-08-08 08:00:00 '' , interval 1 day ); -- 2008-08-09 08:00:00
MySQL timestampadd() 函数类似于 date_add()。
select timestampdiff( year , '' 2002-05-01 '' , '' 2001-01-01 '' ); -- -1
select timestampdiff( day , '' 2002-05-01 '' , '' 2001-01-01 '' ); -- -485
select timestampdiff(hour, '' 2008-08-08 12:00:00 '' , '' 2008-08-08 00:00:00 '' ); -- -12
select datediff ( '' 2008-08-08 12:00:00 '' , '' 2008-08-01 00:00:00 '' ); -- 7
MySQL timestampdiff() 函数就比 datediff () 功能强多了, datediff () 只能计算两个日期(date)之间相差的天数。
六、MySQL 时区(timezone)转换函数
convert_tz(dt,from_tz,to_tz)
select convert_tz( '' 2008-08-08 12:00:00 '' , '' +08:00 '' , '' +00:00 '' ); -- 2008-08-08 04:00:00
时区转换也可以通过 date_add, date_sub, timestampadd 来实现。
select date_add( '' 2008-08-08 12:00:00 '' , interval - 8 hour); -- 2008-08-08 04:00:00
select date_sub( '' 2008-08-08 12:00:00 '' , interval 8 hour); -- 2008-08-08 04:00:00
select timestampadd(hour, - 8 , '' 2008-08-08 12:00:00 '' ); -- 2008-08-08 04:00:00
Mysql 时间和日期函数
参考文章
1 时间函数 当前日期和时间
select now();

2 得到昨天的日期 CURDATE() 当前日期
select CURDATE()-1; -- curdate

3 添加时间间隔
当前日期的未来五年
interval 间隔
select date_add(CURDATE(),interval 5 year);

未来的4个月/3星期
select date_add(CURDATE(),interval 4 MONTH);
select date_add(CURDATE(),interval 3 week);
4 获取当前月份的最后一天
select last_day(CURDATE())
5 当前月的第一天
select date_add(CURDATE(),interval -(select day(CURDATE()))+1 day);
6 日期格式化
select DATE_FORMAT(CURDATE(),"%y-%m-%d")
select DATE_FORMAT(CURDATE(),"%Y-%M-%D")
Y完整年 y年的后两位
M 英文月 m 数字月
D 英文日 d数字日
W英文星期 w数字星期
H 24进制 h12进制
分钟
秒
select DATE_FORMAT(CURDATE(),"%w")
关于python中关于时间和日期函数的常用计算总结和python 日期运算的介绍现已完结,谢谢您的耐心阅读,如果想了解更多关于#小手一抬学Python# 玩转时间和日期库【附源码】、C++ 时间和日期函数的精辟解析、mysql 中 时间和日期函数、Mysql 时间和日期函数的相关知识,请在本站寻找。
本文标签: