今天讲一讲 mysql 中常用的内置函数有哪些:
- 字符串函数
- 日期函数
- 数学函数
字符串函数
LENGTH(string ) //string长度,字节
CHAR_LENGTH(string) //string的字符个数
SUBSTRING(str ,position [,length ]) //从str的position开始,取length个字符
REPLACE(str ,search_str ,replace_str) //在str中用replace_str替换search_str
INSTR(string ,substring ) //返回substring首次在string中出现的位置
CONCAT(string [,... ]) //连接字串
CHARSET(str) //返回字串字符集
LCASE(string ) //转换成小写
LEFT(string ,length ) //从string2中的左边起取length个字符
LOAD_FILE(file_name) //从文件读取内容
LOCATE(substring , string [,start_position ]) //同INSTR,但可指定开始位置
LPAD(string ,length ,pad ) //重复用pad加在string开头,直到字串长度为length
LTRIM(string ) //去除前端空格
REPEAT(string ,count ) //重复count次
RPAD(string ,length ,pad) //在str后用pad补充,直到长度为length
RTRIM(string ) //去除后端空格
STRCMP(string1 ,string2 ) //逐字符比较两字串大小
mysql 中 select 跟 linux中的 echo 效果一样 都是打印信息
select concat("php学习","到底哪家强"); #字符串连接
+---------------------------------------+
| concat("php学习","到底哪家强") |
+---------------------------------------+
| php学习到底哪家强 |
+---------------------------------------+
select lcase("PHP IS SO GOOD"); #转成小写
+-------------------------+
| lcase("PHP IS SO GOOD") |
+-------------------------+
| php is so good |
+-------------------------+
日期函数
select curdate(); #返回当前日期
select curtime();#返回当前时间
select now();#返回当前日期和时间
select unix_timestamp(now()); #返回当前日期的时间戳
select from_unixtime(1524175009);#根据时间戳返回当前的日期
insert into t1(name) values(unix_timestamp()); #直接将 当前时间戳插入数据库
select week(now());#当前时间是第几周
select year(now());#当前时间是哪一年
select datediff("2018-10-20","2015-12-10"); #计算差别的天数 第一次 起始时间 其二个 结束时间
date_format();格式化日期
select date_format(now(),'%Y%m%d');
select date_format(now(),'%Y%m%d%H%i%s');
数学函数
select bin(200); #10进制转成2进制
select ceiling(10.1);11
select floor(10.1);10
mysql> SELECT student_name, MIN(test_score), MAX(test_score)
-> FROM student
-> GROUP BY student_name;
取最大值 和最小值
random() 大于等于0 小于1 js 生成随机数
mt_rand()
rand() 0-1之间的随机值 不包括1 和 0
除以上的函数之外还有:
聚合函数
Count() Sum(); Max(); Min(); Avg(); Group_concat()
流程函数
CASE WHEN [condition] THEN result WHEN [condition]THEN result ...END 多分支
IF(expr1,expr2,expr3) 双分支。
其他的函数
Md5(); Default();