[关闭]
@a5635268 2015-09-23T08:13:39.000000Z 字数 10559 阅读 985

【mysql的编程专题③】内置函数

Mysql


数学函数

常用
abs(x) 返回x的绝对值
floor(x) 返回小于x的最大整数值
mod(x,y) 返回x/y的模(余数)
rand() 返回0到1内的随机值,可以通过提供一个参数(种子)使rand()随机数生成器生成一个指定的值。
truncate(x,y) 返回数字x截短为y位小数的结果
round(x,y) 返回参数x的四舍五入的有y位小数的值

greatest(x1,x2,...,xn) 返回集合中最大的值

  1. select greatest(88,11122,4526,2);

least(x1,x2,...,xn) 返回集合中最小的值

不常用
sqrt(x) 返回一个数的平方根
bin(x) 返回x的二进制(oct返回八进制,hex返回十六进制)
ceiling(x) 返回大于x的最小整数值
exp(x) 返回值e(自然对数的底)的x次方
ln(x) 返回x的自然对数
log(x,y) 返回x的以y为底的对数
pi() 返回pi的值(圆周率)
sign(x) 返回代表数字x的符号的值

聚合函数

avg(col) 返回指定列的平均值
count(col) 返回指定列中非null值的个数
min(col) 返回指定列的最小值
max(col) 返回指定列的最大值
sum(col) 返回指定列的所有值之和

group_concat(col) 返回由属于一组的列值连接组合而成的结果

  1. mysql> SELECT user_id,nickname FROM `users` where email = '0';
  2. +---------+------------+
  3. | user_id | nickname |
  4. +---------+------------+
  5. | 7 | 张三 |
  6. | 13 | 阿菲肉嘟嘟 |
  7. | 14 | 多大 |
  8. +---------+------------+
  9. mysql> SELECT group_concat(nickname) FROM `users` where email = '0'; -- 以逗号分隔
  10. +------------------------+
  11. | group_concat(nickname) |
  12. +------------------------+
  13. | 张三,阿菲肉嘟嘟,多大 |
  14. +------------------------+
  15. 1 row in set

字符串函数

常用
concat(s1,s2...,sn) 将s1,s2...,sn连接成字符串

insert(str,x,y,instr) 将字符串str从第x位置开始,y个字符长的子串替换为字符串instr,返回结果

  1. mysql> SELECT insert(nickname,1,2,user_id) as test FROM `users` where email = '0'; -- 把前面两个字符替换为id号;
  2. +----------+
  3. | test |
  4. +----------+
  5. | 7 |
  6. | 13肉嘟嘟 |
  7. | 14 |
  8. +----------+
  9. 3 rows in set

replace(str,from_str,to_str) 在字符串 str 中所有出现的字符串 from_str 均被 to_str替换,然后返回这个字符串

  1. UPDATE BBSTopic SET tcontents = replace(replace(tcontents,'共产党','') ,'找死','') where tcontents like '%共产党%' or tcontents like '%找死%';
  2. UPDATE typetable SET type_description=REPLACE(type_description,'360','http://www.cnblogs.com/nixi8/');

该函数是多字节可靠的

  1. mysql> update goods set gname = replace(gname,'你好','好个屁');
  2. Query OK, 1 row affected
  3. Rows matched: 6 Changed: 1 Warnings: 0
  4. mysql> select * from goods;
  5. +-----+------------------------+-------+
  6. | gid | gname | stock |
  7. +-----+------------------------+-------+
  8. | 5 | 电脑 | 35 |
  9. | 6 | 自行车 | 35 |
  10. | 7 | 汽车 | 111 |
  11. | 8 | 手机 | 500 |
  12. | 9 | 旧的 | 0 |
  13. | 10 | 好个屁helloworld好个屁 | 2222 |
  14. +-----+------------------------+-------+

索引是从1开始的,如果为0就返回原字符;
如果结束索引大于本身的字段值长度,那将会被全部替换;
在select后,字符串如果不带引号将被认为是mysql字段;

concat_ws(sep,s1,s2...,sn) 将s1,s2...,sn连接成字符串,并用sep字符间隔

  1. mysql> SELECT concat_ws(',',user_id,nickname) as test FROM `users` where email = '0'; -- user_idnickname拼接起来;
  2. +---------------+
  3. | test |
  4. +---------------+
  5. | 7,张三 |
  6. | 13,阿菲肉嘟嘟 |
  7. | 14,多大 |
  8. +---------------+

find_in_set(str,list) 分析逗号分隔的list列表,如果发现str,返回str在list中的位置

  1. mysql> select find_in_set('z','a,d,b,z,d,g') as test
  2. ;
  3. +------+
  4. | test |
  5. +------+
  6. | 4 |
  7. +------+

lcase(str)或lower(str) 返回将字符串str中所有字符改变为小写后的结果
ucase(str)或upper(str) 返回将字符串str中所有字符转变为大写后的结果

left(str,x) 返回字符串str中最左边的x个字符
right(str,x) 返回字符串str中最右边的x个字符
mid(str,pos,len) 从字符串str返回一个len个字符的子串,从位置pos开始

tips: 不分中英文,可作为字符串截取用

substring(str, pos, length) -- substring(被截取字段,从第几位开始截取,截取长度)

  1. mysql> select substring('白日依山尽',1,2) as t; -- 该函数也是多字节可靠的,与服务器端的语言有所不同的是该函数是从1开始计算的。
  2. +------+
  3. | t |
  4. +------+
  5. | 白日 |
  6. +------+
  7. 1 row in set

length(str)返回字符串str中的字符数

  1. mysql> select length('白日依山尽') as test -- 注意中文字符,一个顶三个;
  2. ;
  3. +------+
  4. | test |
  5. +------+
  6. | 15 |
  7. +------+
  8. mysql> select length('zhouzhou') as test2;
  9. +-------+
  10. | test2 |
  11. +-------+
  12. | 8 |
  13. +-------+
  14. 1 row in set

char_length("白日依山尽") 不分中英文的字符串计算;

  1. mysql> select char_length("白日依山尽") as length;
  2. +--------+
  3. | length |
  4. +--------+
  5. | 5 |
  6. +--------+
  7. 1 row in set

ltrim(str) 从字符串str中切掉开头的空格
rtrim(str) 返回字符串str尾部的空格
trim(str)去除字符串首部和尾部的所有空格

  1. -- trim不仅仅能去除空格,还能去除首部和尾部指定的字符
  2. /*
  3. 完整格式:TRIM([{BOTH | LEADING | TRAILING} [remstr] FROM] str)
  4. 简化格式:TRIM([remstr FROM] str)
  5. */
  6. mysql> select trim(both '?' from '??晓???刚??') as t; -- 对中间的字符是无奈的;
  7. +---------+
  8. | t |
  9. +---------+
  10. | 晓???刚 |
  11. +---------+
  12. 1 row in set
  13. mysql> select trim(leading '?' from '??晓???刚??') as t;
  14. +-----------+
  15. | t |
  16. +-----------+
  17. | 晓???刚?? |
  18. +-----------+
  19. 1 row in set

position(substr,str) 返回子串substr在字符串str中第一次出现的位置

  1. mysql> select LOCATE('bar', 'foobarbar') as test;
  2. +------+
  3. | test |
  4. +------+
  5. | 4 |
  6. +------+
  7. 1 row in set
  8. mysql> select LOCATE('日', '白日依山尽') as test; -- 该函数是多字节可靠的。
  9. +------+
  10. | test |
  11. +------+
  12. | 2 |
  13. +------+
  14. 1 row in set

reverse(str) 返回颠倒字符串str的结果
repeat(str,count) 返回字符串str重复count次的结果

常用
ascii(char)返回字符的ascii码值
bit_length(str)返回字符串的比特长度
quote(str) 用反斜杠转义str中的单引号
strcmp(s1,s2)比较字符串s1和s2

日期和时间函数

常用
curdate()或current_date() 返回当前的日期

  1. mysql> select curdate();
  2. +------------+
  3. | curdate() |
  4. +------------+
  5. | 2015-04-25 |
  6. +------------+

curtime()或current_time() 返回当前的时间

  1. mysql> select curtime();
  2. +-----------+
  3. | curtime() |
  4. +-----------+
  5. | 11:57:52 |
  6. +-----------+

now 返回当前的时间和日期

  1. mysql> select now();
  2. +---------------------+
  3. | now() |
  4. +---------------------+
  5. | 2015-04-25 12:14:21 |
  6. +---------------------+

unix_timestamp 返回当前的时间戳

  1. mysql> select unix_timestamp();
  2. +------------------+
  3. | unix_timestamp() |
  4. +------------------+
  5. | 1429935568 |
  6. +------------------+

date_add(date,interval int keyword)返回日期date加上间隔时间int的结果
date_sub(date,interval int keyword)返回日期date减去间隔时间int的结果

int必须按照关键字(day,month,year)进行格式化,如:select date_add(current_date,interval 6 month);

  1. mysql> select date_sub(current_date,interval 6 month) as sub;
  2. +------------+
  3. | sub |
  4. +------------+
  5. | 2014-10-25 |
  6. +------------+
  7. select date_add(current_date,interval 6 month) as dateadd;
  8. +------------+
  9. | dateadd |
  10. +------------+
  11. | 2015-10-25 |
  12. +------------+

date_format(date,fmt) 依照指定的fmt格式格式化日期date值

time_format(time,fmt) 只想转换时间可以使用time_format

  1. SELECT `nid`,`title`,time_format(add_time,"%H时%i分%s秒")as time FROM news;

from_unixtime(ts,fmt) 根据指定的fmt格式,格式化unix时间戳ts

  1. mysql> select from_unixtime(unix_timestamp());
  2. +---------------------------------+
  3. | from_unixtime(unix_timestamp()) |
  4. +---------------------------------+
  5. | 2015-04-25 12:20:30 |
  6. +---------------------------------+
  7. 1 row in set

STR_TO_DATE 字符串格式化为标准时间格式;

  1. mysql> SELECT STR_TO_DATE("2013/3/14日","%Y/%m/%d日") as date;
  2. +------------+
  3. | date |
  4. +------------+
  5. | 2013-03-14 |
  6. +------------+

dayofweek(date) 返回date是一星期中的第几天(1~7)
weekday(now()); 返回date是一星期中的第几天(0~6)周一为0;
dayofmonth(date) 返回date是一个月的第几天(1~31)
dayofyear(date) 返回date是一年的第几天(1~366)
dayname(date) 返回date的星期名

  1. mysql> select dayname(now());
  2. +----------------+
  3. | dayname(now()) |
  4. +----------------+
  5. | Saturday |
  6. +----------------+

date(now()) 返回2015-04-26;
hour(time) 返回time的小时值(0~23)
minute(time) 返回time的分钟值(0~59)
month(date) 返回date的月份值(1~12)
monthname(date) 返回date的月份名
quarter(date) 返回date在一年中的季度(1~4)
week(date) 返回日期date为一年中第几周(0~53)
year(date) 返回日期date的年份(1000~9999)
day(date) 返回date的日数;

to_days(now()) 时间转换为天数

  1. mysql> select to_days(now()) as days;
  2. +--------+
  3. | days |
  4. +--------+
  5. | 736078 |
  6. +--------+

from_days(days) 天数转换为date;

  1. mysql> select from_days(736078) as date;
  2. +------------+
  3. | date |
  4. +------------+
  5. | 2015-04-25 |
  6. +------------+

extract(unit FROM date) 返回日期/时间的单独部分,比如年、月、日、小时、分钟等等。unit列表

  1. mysql> select extract(year_month from current_date) as test1;
  2. +--------+
  3. | test1 |
  4. +--------+
  5. | 201504 |
  6. +--------+
  7. 1 row in set
  8. mysql> select extract(day_second from now()) test2; -- now():2015-4-25 12:26:51
  9. +----------+
  10. | test2 |
  11. +----------+
  12. | 25122651 |
  13. +----------+
  14. 1 row in set

其它示例

  1. mysql> select period_diff(200302,199802) as test; -- 返回月份差;
  2. +------+
  3. | test |
  4. +------+
  5. | 60 |
  6. +------+
  7. 1 row in set
  8. mysql> select user_id,nickname,birthday,date_format(from_days(to_days(now())-to_days(birthday)),'%y')+0 as age from users;-- 如果brithday是未来的年月日(包括今年)的话,计算结果为00 + 0 = 0。当birthday是未来的日期时,将得到负值。
  9. +---------+--------------+---------------------+-----+
  10. | user_id | nickname | birthday | age |
  11. +---------+--------------+---------------------+-----+
  12. | 154546 | 兔小宝要加油 | 2018-05-01 00:00:00 | 0 |
  13. | 169638 | 梅梅0919 | 1987-09-19 00:00:00 | 27 |
  14. | 169699 | 小刀叨叨 | 1989-05-10 00:00:00 | 25 |
  15. +---------+--------------+---------------------+-----+
  16. select date_format(now(), '%y') - date_format(birthday, '%y') -(date_format(now(), '00-%m-%d') < date_format(birthday, '00-%m-%d')) as age from employee -- 计算员工的绝对年龄,即当birthday是未来的日期时,将得到负值。

控制流函数

mysql有4个函数是用来进行条件操作的,这些函数可以实现sql的条件逻辑,允许开发者将一些应用程序业务逻辑转换到数据库后台。

mysql控制流函数:
case when[test1] then [result1]...else [default] end 如果testn是真,则返回resultn,否则返回default
case [test] when[val1] then [result]...else [default]end 如果test和valn相等,则返回resultn,否则返回default

  1. case [expression to be evaluated]
  2. when [val 1] then [result 1]
  3. when [val 2] then [result 2]
  4. when [val 3] then [result 3]
  5. ......
  6. when [val n] then [result n]
  7. else [default result]
  8. end

这里,第一个参数是要被判断的值或表达式,接下来的是一系列的when-then块,每一块的第一个参数指定要比较的值,如果为真,就返回结果。所有的when-then块将以else块结束,当end结束了所有外部的case块时,如果前面的每一个块都不匹配就会返回else块指定的默认结果。如果没有指定else块,而且所有的when-then比较都不是真,mysql将会返回null。
case函数还有另外一种句法,有时使用起来非常方便,如下:

  1. case
  2. when [conditional test 1] then [result 1]
  3. when [conditional test 2] then [result 2]
  4. else [default result]
  5. end

这种条件下,返回的结果取决于相应的条件测试是否为真。

Example:

  1. SELECT
  2. gname,
  3. stock,
  4. CASE stock -- 当待分析的值放在case后,下面的when就不能用表达式了,只能直接根据其值来进行判断;
  5. WHEN 500 THEN
  6. '库存充足'
  7. WHEN 0 THEN
  8. '库存为空'
  9. ELSE
  10. '其它情况'
  11. END AS discription
  12. FROM
  13. goods;
  14. +--------+-------+-------------+
  15. | gname | stock | discription |
  16. +--------+-------+-------------+
  17. | 汽车 | 100 | 其它情况 |
  18. | 手机 | 500 | 库存充足 |
  19. | 旧的 | 0 | 库存为空 |
  20. +--------+-------+-------------+

Example:

  1. SELECT
  2. gid,
  3. gname,
  4. stock,
  5. CASE
  6. WHEN stock > 200 THEN
  7. '库存充足'
  8. WHEN stock < 200 and stock > 50 THEN
  9. '库存正常'
  10. WHEN stock < 50 and stock > 0 THEN
  11. '库存不足'
  12. WHEN stock = 0 THEN
  13. '库存为零'
  14. ELSE
  15. NULL
  16. END AS discription
  17. FROM
  18. goods;
  19. +-----+--------+-------+-------------+
  20. | gid | gname | stock | discription |
  21. +-----+--------+-------+-------------+
  22. | 6 | 自行车 | 35 | 库存不足 |
  23. | 7 | 汽车 | 111 | 库存正常 |
  24. | 8 | 手机 | 500 | 库存充足 |
  25. | 9 | 旧的 | 0 | 库存为零 |
  26. +-----+--------+-------+-------------+
  27. SELECT
  28. fname,
  29. lname,
  30. (math + sci + lit) AS total,
  31. CASE
  32. WHEN (math + sci + lit) < 50 THEN
  33. 'd'
  34. WHEN (math + sci + lit) BETWEEN 50 AND 150 THEN
  35. 'c'
  36. WHEN (math + sci + lit) BETWEEN 151 AND 250 THEN
  37. 'b'
  38. ELSE
  39. 'a'
  40. END AS grade
  41. FROM
  42. marks;

if(test,t,f) 如果test是真,返回t;否则返回f

ifnull(arg1,arg2) 如果arg1不是空,返回arg1,否则返回arg2

nullif(arg1,arg2) 如果arg1=arg2返回null;否则返回arg1

格式化函数

date_format(date,fmt) 依照字符串fmt格式化日期date值

time_format(time,fmt) 依照字符串fmt格式化时间time值

format(x,y) 把x格式化为以逗号隔开的数字序列,y是结果的小数位数

inet_aton(ip) 返回ip地址的数字表示

inet_ntoa(num) 返回数字所代表的ip地址

其中最简单的是format()函数,它可以把大的数值格式化为以逗号间隔的易读的序列。

  1. select format(34234.34323432,3);
  2. select date_format(now(),'%w,%d %m %y %r');
  3. select date_format(now(),'%y-%m-%d');
  4. select date_format(19990330,'%y-%m-%d');
  5. select date_format(now(),'%h:%i %p');
  6. select inet_aton('10.122.89.47');
  7. select inet_ntoa(175790383);

类型转化函数

为了进行数据类型转化,mysql提供了cast()函数,它可以把一个值转化为指定的数据类型。类型有:binary,char,date,time,datetime,signed,unsigned

  1. mysql> select cast(now() as signed integer) as cast,now() as now; -- 把当前时间转换为一个带符号的整数;
  2. +----------------+---------------------+
  3. | cast | now |
  4. +----------------+---------------------+
  5. | 20150426163210 | 2015-04-26 16:32:10 |
  6. +----------------+---------------------+
  7. select cast(now() as signed integer),curdate()+0;
  8. select 'f'=binary 'f','f'=cast('f' as binary);

加密函数

aes_encrypt(str,key) 返回用密钥key对字符串str利用高级加密标准算法加密后的结果,调用aes_encrypt的结果是一个二进制字符串,以blob类型存储
aes_decrypt(str,key) 返回用密钥key对字符串str利用高级加密标准算法解密后的结果

decode(str,key) 使用key作为密钥解密加密字符串str
encrypt(str,salt) 使用unixcrypt()函数,用关键词salt(一个可以惟一确定口令的字符串,就像钥匙一样)加密字符串str

encode(str,key) 使用key作为密钥加密字符串str,调用encode()的结果是一个二进制字符串,它以blob类型存储
md5() 计算字符串str的md5校验和
password(str) 返回字符串str的加密版本,这个加密过程是不可逆转的,和unix密码加密过程使用不同的算法。
sha() 计算字符串str的安全散列算法(sha)校验和

Example

  1. select encrypt('root','salt');
  2. select encode('xufeng','key');
  3. select decode(encode('xufeng','key'),'key');#加解密放在一起
  4. select aes_encrypt('root','key');
  5. select aes_decrypt(aes_encrypt('root','key'),'key');
  6. select md5('123456');
  7. select sha('123456');

系统信息函数

database() 返回当前数据库名
benchmark(count,expr) 将表达式expr重复运行count次
connection_id() 返回当前客户的连接id
found_rows() 返回最后一个select查询进行检索的总行数
user()或system_user() 返回当前登陆用户名
version() 返回mysql服务器的版本

  1. select database(),version(),user();
  2. selectbenchmark(9999999,log(rand()*pi()));#该例中,mysql计算log(rand()*pi())表达式9999999次。
添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注