mysql时间戳时间转换

不想你离开。 提交于 2019-12-03 21:18:41

获取当前时间戳

select unix_timestamp();

select unix_timestamp(now());

获取当前时间

select now();

时间转时间戳

select unix_timestamp('2019-01-15 09:45:16');

时间戳转时间

select from_unixtime(1573053179);

时间戳格式化

SELECT from_unixtime(1573053179, '%Y-%m-%d %H:%i:%S');

时间格式化

select date_format(now(), '%Y-%m-%d');
select date_format('2019-09-15 09:45:16', '%Y-%m-%d');

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!