Mysql 常用函数集

1.分类导航

一共分为5类函数 1. 字符型函数 2. 数值型函数 3. 日期型函数 4. 统计型函数 5. 其它型函数

2.字符型函数[约48个]

ascii(str)

bin(n)

bit_length(str)

char(n,... [using charset])

character_length(str)

char_length(str)

compress(string_to_compress)

concat_ws(separator,str1,str2,...)

conv(n,from_base,to_base)

elt(n,str1,str2,str3,...)

export_set(bits,on,off[,separator[,number_of_bits]])

field(str,str1,str2,str3,...)

find_in_set(str,strlist)

hex(n_or_s)

insert(str,pos,len,newstr)

instr(str,substr)

lcase(str)

left(str,len)

length(str)

load_file(file_name)

locate(substr,str) , locate(substr,str,pos)

lower(str)

lpad(str,len,padstr)

ltrim(str)

make_set(bits,str1,str2,...)

mid(str,pos,len)

oct(n)

octet_length(str)

ord(str)

position(substr in str)

quote(str)

repeat(str,count)

replace(str,from_str,to_str)

reverse(str)

right(str,len)

rpad(str,len,padstr)

rtrim(str)

soundex(str)

space(n)

strcmp(expr1,expr2)

substring(str,pos) , substring(str from pos) substring(str,pos,len) , substring(str from pos for len)

substring_index(str,delim,count)

trim([{both | leading | trailing} [remstr] from] str) trim(remstr from] str)

ucase(str)

uncompress(string_to_uncompress)

uncompressed_length(compressed_string)

unhex(str)

upper(str)

3.数值型函数[约25个]

abs(x)

acos(x)

asin(x)

atan(x)

atan2(y,x)

ceiling(x) ceil(x)

cos(x)

cot(x)

crc32(expr)

degrees(x)

div

exp(x)

floor(x)

log10(x)

log2(x)

mod(n,m) , n % m n mod m

pi()

pow(x,y) , power(x,y)

radians(x)

rand() rand(n)

round(x) round(x,d)

sign(x)

sin(x)

sqrt(x)

tan(x)

4.日期型函数[约65个]

adddate(date,interval expr type)

adddate(expr,days)

addtime(expr,expr2)

convert_tz(dt,from_tz,to_tz)

curdate()

current_date()

current_time()

current_timestamp()

curtime()

date(expr)

datediff(expr,expr2)

date_add(date,interval expr type) 

date_format(date,format)

date_add(date,interval expr type) 

day(date)

dayname(date)

dayofweek(date)

dayofyear(date)

extract(type from date)

dayofmonth(date)

from_days(n)

from_unixtime(unix_timestamp)

from_unixtime(unix_timestamp,format)

get_format(date|time|datetime, ‘eur‘|‘usa‘|‘jis‘|‘iso‘|‘internal‘)

hour(time)

last_day(date)

ln(x)

localtime()

localtimestamp()

log(x) log(b,x)

makedate(year,dayofyear)

maketime(hour,minute,second)

microsecond(expr)

minute(time)

month(date)

monthname(date)

now()

period_add(p,n)

period_diff(p1,p2)

quarter(date)

second(time)

sec_to_time(seconds)

str_to_date(str,format)

subdate(date,interval expr type) subdate(expr,days)

subtime(expr,expr2)

sysdate()

time(expr)

timediff(expr,expr2)

timestampadd(interval,int_expr,datetime_expr)

timestampdiff(interval,datetime_expr1,datetime_expr2)

time_format(time,format)

time_to_sec(time)

to_days(date)

truncate(x,d)

unix_timestamp()

unix_timestamp(date)

utc_date()

utc_time()

utc_timestamp()

week(date[,mode])

weekday(date)

weekofyear(date)

year(date)

yearweek(date)

yearweek(date,start)

5.统计型函数[约14个]

avg([distinct] expr)

bit_and(expr)

bit_or(expr)

bit_xor(expr)

count(distinct expr,[expr...])

group_concat(expr)

min([distinct] expr), max([distinct] expr)

std(expr) stddev(expr)

stddev_pop(expr)

stddev_samp(expr)

sum([distinct] expr)

variance(expr)

var_pop(expr)

var_samp(expr)

6.其它型函数[约44个]

aes_encrypt(str,key_str) , aes_decrypt(crypt_str,key_str)

benchmark(count,expr)

binary

bit_count(n)

cast(expr as type), convert(expr,type) , convert(expr using transcoding_name)

collation(str)

connection_id()

current_user()

database()

decode(crypt_str,pass_str)

default(col_name)

des_decrypt(crypt_str[,key_str])

des_encrypt(str[,(key_num|key_str)])

encode(str,pass_str)

encrypt(str[,salt])

format(x,d)

found_rows()

get_lock(str,timeout)

if(expr1,expr2,expr3)

ifnull(expr1,expr2)

inet_aton(expr)

inet_ntoa(expr)

isnull(expr)

is_free_lock(str)

is_used_lock(str)

master_pos_wait(log_name,log_pos[,timeout])

md5(str)

name_const(name,value)

nullif(expr1,expr2)

old_password(str)

password(str)

release_lock(str)

row_count()

schema()

session_user()

sha1(str) sha(str)

sleep(duration)

system_user()

timestamp(expr) 

timestamp(expr,expr2)

user()

uuid()

values(col_name)

version()

转:https://blog.csdn.net/qq_15071263/article/details/79033856

参考:https://blog.csdn.net/sinat_38899493/article/details/78710482

原文地址:https://www.cnblogs.com/fps2tao/p/9038601.html

时间: 2024-10-29 13:00:24

Mysql 常用函数集的相关文章

SQLite构建常用函数集

查询数组中元素的个数 作者定义了一个查询数组个数的宏: /* ** A convenience macro that returns thenumber of elements in ** an array. */ #define ArraySize(X)    ((int)(sizeof(X)/sizeof(X[0])))

php常用函数集

网络请求: 1 /** 2 * 发起HTTPS请求 3 */ 4 function curl_post($url,$data=null,$header=null,$post=0) 5 { 6 //初始化curl 7 $ch = curl_init(); 8 //参数设置 9 $res= curl_setopt ($ch, CURLOPT_URL,$url); 10 curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE); 11 curl_setopt($c

VB字符串函数集

1.      ASC,Chr函数 [说明]: 转换字符字符码 [格式]: P=Asc(X) 返回字符串X的第一个字符的字符码 P=Chr(X) 返回字符码等于X的字符 [范例]: (1)P=Chr(65)      ' 输出字符A,因为A的ASCII码等于65 (2)P=Asc("A")   ' 输出65 2.      Len函数 [格式]: P=Len(X) [说明]: 计算字符串X的长度,空字符串长度为0,空格符也算一个字符,一个中文字虽然占用2 Bytes,但也算一个字符.

VBA 字符串处理函数集

转自:http://blog.csdn.net/jyh_jack/article/details/2315345 mid(字符串,从第几个开始,长度)  在[字符串]中[从第几个开始]取出[长度个字符串]  例如 mid("小欣无敌",1,3) 则返回 "小欣无" instr(从第几个开始,字符串1,字符串2) 从规定的位置开始查找,返回字符串2在字符串1中的位置  例如 instr(1,"小欣无敌","小") 则返回 1,i

MySQL 常用语句大全

MySQL 常用语句大全 一.连接 MySQL 格式: mysql -h 主机地址 -u 用户名 -p 用户密码 1.例 1:连接到本机上的 MYSQL. 首先在打开 DOS 窗口,然后进入目录 mysql bin,再键入命令 mysql -uroot -p,回 车后提示你输密码,如果刚安装好 MYSQL,超级用户 root 是没有密码的,故直接回车即 可进入到 MYSQL 中了,MYSQL 的提示符是: mysql>. 2.例 2:连接到远程主机上的 MYSQL.假设远程主机的 IP 为:11

mysql常用命令用法

1.创建数据库:create database database_name; 2.选择数据库:use database_name; 3.创建表:create table tablename(column1 data_type1, column2 data_type2,...,columnn datatypen); 4.设置表主键:alter table tablename add primary key(column_name); 5:修改表的字段名:alter table tablename

Mysql常用基本命令汇总及默认账户权限与修改

一直只是在浅显利用数据库存储数据,也被windows惯坏了,很多命令使用的时候记不起来,so,换LINUX系统!不再使用GUI管理数据库!也想深入学习下Mysql,从权限管理开始!也就诞生了这篇学习笔记. 修改默认密码 Mysql新安装时默认root密码为空,极不安全!建议安装过后马上就修改.附修改方法: mysqladmin -u root -p password 接下来按提示输入新密码即可! 命令详解: mysqladmin -u root -p[oldpass] password newp

mysql 常用技巧

1.正则使用 比 LIKE 会牺牲很多的系统资源 尽量不要用 正则的语法和JS PHP 差不多 select * from t1 where email REGEXP "@163[,.]com$"; select * from t1 where email like "%@163.com" or email like "%@163,com" 2.REPLACE 函数的使用 UPDATE `v9_zhushou` SET `thumb` = REP

Mysql常用DDL命令

Mysql常用命令:--在Mysql中,语句的结尾要么使用;要么使用\g或者\G作为结束符.进入Mysql (---其中Your MySQL connection id is 5表示到当前为止连接到Mysql数据库的次数,Server version: 5.5.37-log Source distribution表示Mysql数据库的版本)[[email protected] data]$ mysql -uroot -pEnter password:Welcome to the MySQL mo