本文给大家介绍六条比较有用的mysql的sql语句,可能很多人都通过php来实现这些功能。 1. 计算年数 你想通过生日来计算这个人有几岁了。 select date_format(from_days(to_days(now()) - to_days(@dateofbirth)), %y) + 0; 2. 两个时间的差 取得两个 datetim
本文给大家介绍六条比较有用的mysql的sql语句,可能很多人都通过php来实现这些功能。
1. 计算年数
你想通过生日来计算这个人有几岁了。
select date_format(from_days(to_days(now()) - to_days(@dateofbirth)), '%y') + 0;
2. 两个时间的差
取得两个 datetime 值的差。假设 dt1 和 dt2 是 datetime 类型,其格式为 ‘yyyy-mm-dd hh:mm:ss’,那么它们之间所差的秒数为:
unix_timestamp( dt2 ) - unix_timestamp( dt1 ) 除以60就是所差的分钟数,除以3600就是所差的小时数,再除以24就是所差的天数。
3. 显示某一列出现过n次的值
select id
from tbl
group by id
having count(*) = n;
4. 计算两个日子间的工作日
所谓工作日就是除出周六周日和节假日。
select count(*)
from calendar
where d between start and stop
and dayofweek(d) not in(1,7)
and holiday=0;
5. 查找表中的主键
select k.column_name
from information_schema.table_constraints t
join information_schema.key_column_usage k
using (constraint_name,table_schema,table_name)
where t.constraint_type='primary key'
and t.table_schema='db'
and t.table_name=tbl'
6. 查看你的数库有多大
elect
table_schema as 'db name',
round( sum( data_length + index_length ) / 1024 / 1024, 3 ) as 'db size (mb)',
round( sum( data_free ) / 1024 / 1024, 3 ) as 'free space (mb)'
from information_schema.tables
group by table_schema ;
文章出自:中国it实验室