Bootstrap

MySQL常用函数------详细

MySQL常用函数

一、数字函数
在这里插入图片描述
附加:ceil(x) 如ceil(1.23) 值为2 可以写成ceiling(x)
 
二、字符串函数
在这里插入图片描述
划线就是常用的(取字节数)
在这里插入图片描述
附加:char_length字符 (查询名字后三位数的) 如:char_length(name)=3
可写成:

select left(name,1) from c1;

 
三、时间函数
在这里插入图片描述
用法:select now();
 
四、系统函数
在这里插入图片描述
为了加分隔符:

select concat_ws('#',name,tel,height) from xxb;
select (substr(Now(),1,4)-substr(age,1,4) as 年龄 from zxc;

下行SQL语句说明:第一个now()是用来对比的,interval 50 minute表示往后推50个单位,- 50就是往前推50个单位
year(now()) 取年;month(now()) 取月;day(now()) 取日;nour(now()) 取时;minute(now()) 取分;second(now()) 取秒

select now(),date_add(now(),interval 50 minute);  

获取星期:

select dayofweek(now()),dayname(now());

 
五、聚合函数
把多个数据汇集计算出单一的1个数据值
在这里插入图片描述
用法:

select sum(heigth) from c1;

取记录数(行数),都过滤空值:count() 如果14行有一行为空,则count()为13行
count()可带count(*)这样比较准确,一般用count(*)来统计

计算两个日期之间相差多个个单位
如:
select timestampdiff(时间单位,日期时间1,日期时间2)
写成:

select timestampdiff(day,'2021-11-18','2021-11-22');

请添加图片描述

;