mysql时间、字符串、时间戳、相互转换转换

MySql日期、字符串、时间戳转换

类型:
A:时间
B:字符串
C:时间戳

涉及到的函数
1.date_format(date, format) 日期格式化函数
2.unix_timestamp() 函数
3.str_to_date(str, format) 函数
4.from_unixtime(unix_timestamp, format) 时间戳格式化函数

一.A —>B、C

A —>B:时间类型转换为字符串
select date_format(now(),’%Y-%m-%d’);
在这里插入图片描述
A —>C:时间类型转换为时间戳
select unix_timestamp(now());
在这里插入图片描述

二.B—>A、C
B—>A
字符串类型转换为时间类型
select str_to_date(‘2021-05-20’,’%Y-%m-%d’);
在这里插入图片描述

B—>C
字符串类型转换为时间戳
select unix_timestamp(‘2021-05-20’);
在这里插入图片描述
三.C—>B、A
C—>B
时间戳转换为时间类型
select from_unixtime(1621440000);
在这里插入图片描述

C—>A
时间戳转换为字符串类型
select from_unixtime(1621440000,’%Y-%m’);
在这里插入图片描述
附:
MySQL日期格式化(format)取值范围。
在这里插入图片描述
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值