下面介绍了计算生日,两时间差,显示某一列出现过n次的值,查看你的数库有多大等常用操作sql有需要的朋友可以参考一下。
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. 查看你的数库有多大
代码如下 复制代码
select
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 ;