赞
踩
-- 数学函数
use db_exercise1;
select abs(-100) 绝对值,
floor(29.8) 向下取整,
ceil(30.1) 向上取整,
round(29.3134) 四舍五入,
round(29.545,2) 四舍五入保留两位小数,
pow(2,4) 幂数,
rand() `0-1之间的随机数`,
pi() 圆周率,
greatest(1,2,3,4,6,7,8) 多个数据中的最大值,
least(1,2,3,4,5,88) 多个数据中的最小值;
-- 求字符串长度
insert into student value('09','kbba','2000-02-09','女');
select sname,char_length(sname) 字符串长度 from student;
select * from student where char_length(sname)=4;
-- 获取左边指定长度的字符
select sname,left(sname,1) 获取左边指定长度的字符 from student;
-- 获取右边指定长度的字符
select sname,right(sname,1) 获取左边指定长度的字符 from student;
-- 判断字符串中是否包含指定内容【包含就显示包含的第一个字母所在位置(从1开始),不包含就显示0】
select instr('asdvadsf','asd'),
instr('asdvadsf','dv'),
instr('asdvadsf','f'),
instr('asdvadsf','adv');
-- 字符串拼接
select concat(sid,sname,ssex) 无连接符字符串拼接 from student;
select concat_ws('+',sid,sname,ssex) 有连接符的字符串拼接 from student;
-- 字符串替换 select replace(字符串,旧字串,新子串);
select replace('abcdefg','cd','--');
-- 因为MySQL中没法统计某个字符出现的次数,
-- 所以可以用替换的方法先将某个需要统计的字符替换为空字符,然后用旧字符串长度减新字符串长度,就能算出有多少字符。
-- 移除字符串两端的内容 select trim(字串 from 字符串);
select trim('*' from '***aaa***') 清除两端的,
trim(leading '*' from '***aaa***') 清除前面的,
trim(trailing '*' from '***aaa***') 清除后面的;
-- 字符比较 数据在MySQL 忽略大小写
-- 前者大于后者 结果为1 等于结果为0 小于结果为-1
select strcmp('a','A'),
strcmp('abc','a'),
strcmp('a','sdf');
-- 提取字串
-- select substr(字符串,提取的起始位置【从1开始】,长度)
-- 不设置长度就会从提取的起始位置一直选到结尾
select substr('abcdefgh',2,3),
substr('abcdefgh',2);
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。