博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
mysql 时间函数总结
阅读量:4947 次
发布时间:2019-06-11

本文共 1970 字,大约阅读时间需要 6 分钟。

1. 获取当前时间
 
select
now(); // 2018-08-24 11:01:26
 
select
unix_timestamp(); // 1535079695
 
总结:unix_timestamp返回的是时间戳,now返回的是默认格式的可读时间。
 
2. 获取过去几个小时的时间是多少
 
select
date_sub(now(),
interval 5 hour); // 2018-08-24 06:02:23
 
总结:date_sub() 表示date时间减法运算。第一个参数是格式化的时间,第二个则比较灵活。
 
3. 获取天数间隔
 
select * from bill where
to_days(now()) - to_days(consume_time) =1 ; // 获取昨天的数据,consume_time类型为timestamp
 
总结:to_days()表示从公元元年开始的天数,参数是格式化的时间,mysql中格式为timestamp的自然也可以,该函数可以用来计算天数间隔。
 
select * from bill where
date_sub(curdate(),
interval 7 day) <= date(consume_time);// 过去7天的数据
 
总结:date_sub只要设定时间单位,也可以用来计算天数间隔。date()表示返回时间的日期部分。
 
4. 获取本月的时间的记录
 
SELECT * FROM bill WHERE
date_format(consume_time, '%Y%m' ) = date_format( curdate( ) , '%Y%m' );
 
总结:date_format(timestamp, 'format')表示按照选定格式显示时间,参数是格式化的时间。
 
5. 查看上个月的时间的记录
 
SELECT * FROM bill WHERE
period_diff(date_format(now(), '%Y%m' ), DATE_FORMAT(consume_time , '%Y%m' )) = 1;
 
总结:period_diff(a,b)表示计算两个日期的差值,参数是格式化的时间。类似的方法还有timestampdiff函数,格式上略有不同。
 
select a.user_name as aUser, b.user_name as bUser, a.deleted, a.create_time, b.create_time
from (select user_name, create_time, deleted from users) a
left join (select user_name, create_time, deleted from users) b on a.deleted=b.deleted
where
timestampdiff(
day, FROM_UNIXTIME(a.create_time, '%Y-%m-%d'), FROM_UNIXTIME(b.create_time, '%Y-%m-%d')) =1;
 
 
6. 其它
 
from_unixtime(1535017808, '%Y-%m-%d %H:%i:%S');
 
总结:from_unixtime函数是少有的以时间戳为参数的方法!!!
 
7. 格式串
%a
缩写星期名
%b
缩写月名
%c
月,数值
%D
带有英文前缀的月中的天
%d
月的天,数值(00-31)
%e
月的天,数值(0-31)
%f
微秒
%H
小时 (00-23)
%h
小时 (01-12)
%I
小时 (01-12)
%i
分钟,数值(00-59)
%j
年的天 (001-366)
%k
小时 (0-23)
%l
小时 (1-12)
%M
月名
%m
月,数值(00-12)
%p
AM 或 PM
%r
时间,12-小时(hh:mm:ss AM 或 PM)
%S
秒(00-59)
%s
秒(0-59)
%T
时间, 24-小时 (hh:mm:ss)
%U
周 (00-53) 星期日是一周的第一天
%u
周 (00-53) 星期一是一周的第一天
%V
周 (01-53) 星期日是一周的第一天,与 %X 使用
%v
周 (01-53) 星期一是一周的第一天,与 %x 使用
%W
星期名
%w
周的天 (0=星期日, 6=星期六)
%X
年,其中的星期日是周的第一天,4 位,与 %V 使用
%x
年,其中的星期一是周的第一天,4 位,与 %v 使用
%Y
年,4 位
%y
年,2 位
 

转载于:https://www.cnblogs.com/bityinjd/p/9555612.html

你可能感兴趣的文章
【软件工程】第一次阅读作业
查看>>
创建链表LinkedList
查看>>
页面底部的回到顶部的按钮实现
查看>>
APIs
查看>>
c# 判断是否为同一周
查看>>
Python函数篇(1)-函数中的形参与实参(已更新)
查看>>
WCF(二) 使用配置文件实现WCF应用程序
查看>>
【CodeForces 803 C】Maximal GCD(GCD+思维)
查看>>
python 去掉换行符或者改为其他方式结尾的方法(end='')
查看>>
数据模型(LP32 ILP32 LP64 LLP64 ILP64 )
查看>>
REST构架风格介绍:状态表述转移
查看>>
广告弹力球效果
查看>>
学习总结(三十五)
查看>>
[转载]115个Java面试题和答案
查看>>
[笔记] 易错点集合
查看>>
使用gnuplot对tpcc-mysql压测结果生成图表
查看>>
微信事件推送接口(原创总结)
查看>>
ubuntu server下安装VMware【原创】
查看>>
浅谈session与cookie之间的联系
查看>>
struct {0}初始化
查看>>