MySQL常用函数

MySQL常用函数


一、数学函数

abs(x) 返回x的绝对值

bin(x)返回x的二进制

oct(x)返回x的八进制

hex(x)返回x的十六进制

ceiling(x)返回大于x的最小整数值

exp(x) 返回值e(自然对数的底)的x次方

floor(x) 返回小于x的最大整数值

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

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

ln(x)                   返回x的自然对数

log(x,y) 返回x的以y为底的对数

mod(x,y)返回x/y的模(余数)

pi() 返回pi的值(圆周率)

rand() 返回0到1内的随机值,可以通过提供一个参数(种子),  使rand()随机数生成器生成一个指定的值。

round(x,y) 返回参数x的四舍五入的有y位小数的值

sign(x) 返回代表数字x的符号的值

sqrt(x) 返回一个数的平方根

truncate(x,y) 返回数字x截短为y位小数的结果



二、聚合函数

avg(col) 返回指定列的平均值

count(col) 返回指定列中非null值的个数

min(col) 返回指定列的最小值

max(col) 返回指定列的最大值

sum(col) 返回指定列的所有值之和

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



三、字符串函数

ascii(char) 返回字符的ascii码值

char(ascii) 返回ascii码值对应的字符

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

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

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

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

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

bit_length(str) 返回字符串str的位数

char_length(str) 返回字符串str的字符数

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

quote(str) 用反斜杠转义str中的单引号

repeat(str,srchstr,rplcstr) 返回字符串str重复x次的结果

reverse(str) 返回颠倒字符串str的结果

left(str,x) 返回字符串str中最左边的x个字符

right(str,x) 返回字符串str中最右边的x个字符

ltrim(str) 从字符串str中切掉开头的空格

rtrim(str) 返回字符串str尾部的空格

trim(str) 去除字符串首部和尾部的所有空格

strcmp(s1,s2) 比较字符串s1和s2

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

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

substring(str,start,len)返回子字符串,start从1开始,len指定截取的长度

locate(substr,str,pas)找出串str的一个子串substr,开始处为pas

soundex(str) 返回串str的SOUNDEX值



四、日期和时间函数

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

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

now() 返回当前的日期和时间

current_timestamp() 同now()函数

sysdate() 返回当前的日期和时间,同 now() 函数的区别是:now()取的是语句开始执行的时间,sysdate()取的是动态的实时时间

datediff(date1,date2)返回两个日期之差

dayofweek(date) 返回date所代表的一星期中的第几天(1~7)

dayofmonth(date) 返回date是一个月的第几天(1~31)

dayofyear(date) 返回date是一年的第几天(1~366)

week(date) 返回date为一年中第几周(0~53)

year(date) 返回date的年份(1000~9999)

month(date) 返回date的月份值(1~12)

day(date) 返回date的天数(0-31)

hour(time) 返回time的小时值(0~23)

minute(time) 返回time的分钟值(0~59)

second(time) 返回time的秒数(0-59)

microsecond(datetime) 返回微妙数

date(datetime) 返回日期时间的日期部分

time(datetime) 返回日期时间的时间部分

dayname(date) 返回date的星期名,英语中的星期

monthname(date) 返回date的月份名

quarter(date) 返回date在一年中的季度(1~4)

unix_timestamp() 返回unix时间戳

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

addtime(expr,expr2)增加一个时间

adddate(date,interval int keysword) 返回日期date加上间隔时间int的结果(int必须按照关键字进行格式化)

date_add(date,interval int keyword)返回日期date加上间隔时间int的结果(int必须按照关键字进行格式化)

date_sub(date,interval int keyword) 返回日期date加上间隔时间int的结果(int必须按照关键字进行格式化)


示例:
1、select dayname(current_date);
2、select monthname(current_date);
3、select quarter(current_date);
4、select date_add(current_date,interval 6 month);
5、selectdate_sub(current_date,interval 6 month);
6、select from_unixtime(unix_timestamp());

7、select extract(year_month from current_date);

8、select extract(day_second from current_date);
9、select extract(hour_minute from current_date);
10、select period_diff(200302,199802);
11、select date_format(from_days(to_days(now())-to_days(birthday)),'%y') + 0 as age from employee;
12、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;

13、select from_unixtime(unix_timestamp(),'%Y-%m-%d %H:%i:%s') #2014-11-02 13:54:10

14、select microsecond('2011-01-01 00:01:10.123456')



五、加密函数
1、aes_encrypt(str,key)  
返回用密钥key对字符串str利用高级加密标准算法加密后的结果,
调用aes_encrypt的结果是一个二进制字符串,以blob类型存储
2、aes_decrypt(str,key)  
返回用密钥key对字符串str利用高级加密标准算法解密后的结果
3、encrypt(str,salt)   
使用unixcrypt()函数,用关键词salt加密字符串str
4、decode(str,key)   
使用key作为密钥解密加密字符串str
5、encode(str,key)   
使用key作为密钥加密字符串str,
调用encode()的结果是一个二进制字符串,它以blob类型存储
6、md5(str) 计算字符串str的md5校验和
7、password(str) 返回字符串str的加密版本,这个加密过程是不可逆转的,
8、sha(str) 计算字符串str的安全散列算法(sha)校验和


示例:
select encrypt('root','salt');
select encode('xufeng','key');
select decode(encode('xufeng','key'),'key');
select aes_encrypt('root','key');
select aes_decrypt(aes_encrypt('root','key'),'key');
select md5('123456');

select sha('123456');



六、控制流函数
1、case when[test1] then [result1]...else [default] end
如果testn是真,则返回resultn,否则返回default
2、case [test] when[val1] then [result]...else [default] end  
如果test和valn相等,则返回resultn,否则返回default
3、if(test,t,f)
如果test是真,返回t;否则返回f
4、ifnull(arg1,arg2)
如果arg1不是null,返回arg1,否则返回arg2
5、nullif(arg1,arg2)
如果arg1=arg2返回null;否则返回arg1
6、isnull(var)

判断变量var是否为null


示例
select ifnull(1,2), ifnull(null,10),ifnull(4*null,'false');
select nullif(1,1),nullif('a','b'),nullif(2+3,4+1);
selectif(1<10,2,3),if(56>100,'true','false');
select case 'green' when 'red' then 'stop' when 'green' then 'go' end;
select case 9 when 1 then 'a' when 2 then 'b' else 'n/a' end;
select case when (2+2)=4 then 'ok' when(2+2)<>4 then 'not ok' end asstatus;
select name,if((isactive = 1),'已激活','未激活') as result fromuserlogininfo;
select fname,lname,(math+sci+lit) as total,
case when (math+sci+lit) < 50 then 'd'
when (math+sci+lit) between 50 and 150 then 'c'
when (math+sci+lit) between 151 and 250 then 'b'
else 'a' end

as grade from marks;



七、格式化函数
1、date_format(date,fmt) 依照字符串fmt格式化日期date值
2、format(x,y) 把x格式化为以逗号隔开的数字序列,
y是结果的小数位数
3、inet_aton(ip) 返回ip地址的数字表示
4、inet_ntoa(num) 返回数字所代表的ip地址
5、time_format(time,fmt) 依照字符串fmt格式化时间time值


示例:
select format(34234.34323432,3);
select date_format(now(),'%w,%d %m %y %r');
select date_format(now(),'%y-%m-%d');
select date_format(19990330,'%y-%m-%d');
select date_format(now(),'%h:%i %p');
select inet_aton('10.122.89.47');

select inet_ntoa(175790383);



八、类型转化函数

cast()函数进行数据类型转化,可以把一个值转化为指定的数据类型。
类型有:
binary,
char,
date,
time,
datetime,
signed,
unsigned
示例:
 1、select cast(now() as signed integer),curdate()+0;

 2、select 'f'=binary 'f','f'=cast('f' as binary);


九、系统信息函数

database() 返回当前数据库名

benchmark(count,expr)将表达式expr重复运行count次

connection_id()返回当前客户的连接id

found_rows()返回最后一个select查询进行检索的总行数

user()或system_user()返回当前登陆用户名

version()返回mysql服务器的版本

last_insert_id() 返回上一次insert插入操作生成的id


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值