【MySQL--->内置函数】

文章目录

    • @[TOC](文章目录)
  • 一、日期函数
  • 二、字符串函数
  • 三、数学函数
  • 四、其他函数

一、日期函数

current_date();当前日期
current_time();当前时间
current_timestamp();当前时间戳
【MySQL--->内置函数】_第1张图片
now();当前时间
date(‘date’);日期
【MySQL--->内置函数】_第2张图片
date_sub(date,interval number second/minute/hour/day/month/year);日期减运算
date_add(date,interval number second/minute/hour/day/month/year);日期加运算
【MySQL--->内置函数】_第3张图片
datediff(date1,date2);计算日期差
【MySQL--->内置函数】_第4张图片
计算出两分钟内更新的信息
【MySQL--->内置函数】_第5张图片【MySQL--->内置函数】_第6张图片

二、字符串函数

【MySQL--->内置函数】_第7张图片
charset(variable);求编码格式
【MySQL--->内置函数】_第8张图片
concat(str1,str2,…)连接多个字符串
【MySQL--->内置函数】_第9张图片
instr(str,substr);返回子串在字符串中的起始位置
子串存在返回位置,否则返回0;
【MySQL--->内置函数】_第10张图片
ucase(str)转换大写字符
lcase(str)转换小写字符
length()求字符串长度
substring(str,pos,length)取字符串子串
将岗位名称的首字母转换为小写显示
【MySQL--->内置函数】_第11张图片
ltrim(),trim(),rtrim()去除字符串左边,两边,右边空格.
【MySQL--->内置函数】_第12张图片
replace(str,search_str,replace_str);字符串子串替换
将名字中的S字符替换为上海
【MySQL--->内置函数】_第13张图片
strcmp(str,str)字符串比较
【MySQL--->内置函数】_第14张图片
left(str,length);从字符串左边截取length个字符
right(str,length);从字符串右边截取length个字符
【MySQL--->内置函数】_第15张图片

三、数学函数

abs(number);取绝对值
【MySQL--->内置函数】_第16张图片
bin(decimalnumber);转换为二进制
【MySQL--->内置函数】_第17张图片
conv(number,from_base,to_base);讲一个数字转换为指定进制数
【MySQL--->内置函数】_第18张图片
hex(decimalnumber);十进制转十六进制
【MySQL--->内置函数】_第19张图片
rand();随机数
【MySQL--->内置函数】_第20张图片
mod(number,denominator);取模
【MySQL--->内置函数】_第21张图片
format(number,decimal_places);格式化,指定保留小数位数
【MySQL--->内置函数】_第22张图片
ceiling(number);向上取整
【MySQL--->内置函数】_第23张图片
floor(number);向下取整
【MySQL--->内置函数】_第24张图片

四、其他函数

user();查看使用mysql的用户
database();查看正在使用的数据库
【MySQL--->内置函数】_第25张图片
md5();数据摘要
password();数据加密
【MySQL--->内置函数】_第26张图片


你可能感兴趣的:(mysql,数据库)