本篇内容主要讲解“MySQL数据库字符串函数有哪些”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“MysqL数据库字符串函数有哪些”吧!
第一类:字符串函数
1、conv(n,from_base,to_base):对from_base进制的数n,转成to_base进制的表示方式(PS:进制范围为2-36进制,当to_base是负数时,n作为有符号数否则作无符号数)
MysqL> select conv("a",16,2);
-> '1010'
MysqL> select conv("6e",16,10);
-> '110'
MysqL> select conv(-17,16,-10);
-> '-23'
2、bin(n)/oct(n)/hex(n) :返回10进制数n对应的二进制/八进制/十六进制的表示方式
MysqL> select bin(12);
-> '1100'
MysqL> select oct(12);
-> '14'
MysqL> select hex(255);
-> 'ff'
3、char(n,...) :返回多个ascii码对应的字符组成的字符串
MysqL> select char(77,121,83,81,'76');
-> 'MysqL'
MysqL> select char(77,77.3,'77.3');
-> 'mmm'
4、concat(str1,str2,...) :将多个参数拼接成一个字符串,只要有一个为null,就返回null。
MysqL> select concat('my', 's', 'ql');
-> 'MysqL'
MysqL> select concat('my', null, 'ql');
-> null
MysqL> select concat(14.3);
-> '14.3'
4、length(str)/octet_length(str) :返回参数对应的默认字符集的所有字节数。
5、char_length(str)/character_length(str):返回字符串str的字符长度
MysqL> select length('text');
-> 4
MysqL> select octet_length('text');
-> 4
6、locate(substr,str)/position(substr in str)/instr(str,substr):返回字符串substr在字符串str第一次出现的位置(str不包含substr时返回0)
MysqL> select locate('bar', 'foobarbar');
-> 4
MysqL> select locate('xbar', 'foobar');
-> 0
MysqL> select instr('foobarbar', 'bar');
-> 4
7、locate(substr,str,pos) :返回字符串substr在字符串str的第pos个位置开始算起,第一次出现的位置(str不包含substr时返回0)
MysqL> select locate('bar', 'foobarbar',5);
-> 7
8、lpad(str,len,padstr)/rpad(str,len,padstr) :用字符串padstr填补str左端/右端直到字串长度为len并返回
MysqL> select lpad('hi',4,'??');
-> '??hi'
MysqL> select rpad('hi',5,'?');
-> 'hi???'
9、left(str,len)/right(str,len) :返回字符串str的左端/右端的len个字符
MysqL> select left('foobarbar', 5);
-> 'fooba'
MysqL> select right('foobarbar', 4);
-> 'rbar'
10、substring(str,pos,len)/substring(str from pos for len)/mid(str,pos,len) :返回字符串str的位置pos起len个字符
MysqL> select substring('quadratically',5,6);
-> 'ratica'
11、substring(str,pos)/substring(str from pos) :返回字符串str的位置pos起的一个子串,pos为负数时,倒数后截取到最后
MysqL> select substring('quadratically',5);
-> 'ratically'
MysqL> select substring('foobarbar' from 4);
-> 'barbar'
12、substring_index(str,delim,count) :返回从字符串str的第count个出现的分隔符delim之后的子串
(count为正数时返回左端,否则返回右端子串)
MysqL> select substring_index('MysqL', '.', 2);
-> 'www.MysqL'
MysqL> select substring_index('www.MysqL.com', '.', -2);
-> 'MysqL.com'
13、ltrim(str)/rtrim(str) :返回删除了左空格/右空格的字符串str
MysqL> select ltrim(' barbar');
-> 'barbar'
MysqL> select rtrim('barbar ');
-> 'barbar'
14、trim([[both | leading | trailing] [remstr] from] str) :返回前缀或后缀remstr被删除了的字符串str(位置参数默认both,remstr默认值为空格) MysqL> select trim(' bar ');
-> 'bar'
MysqL> select trim(leading 'x' from 'xxxbarxxx');
-> 'barxxx'
MysqL> select trim(both 'x' from 'xxxbarxxx');
-> 'bar'
MysqL> select trim(trailing 'xyz' from 'barxxyz');
-> 'barx'
15、space(n) :返回由n个空格字符组成的一个字符串
MysqL> select space(6);
-> ' '
16、replace(str,from_str,to_str) :用字符串to_str替换字符串str中的子串from_str并返回
MysqL> select replace('www.MysqL.com', 'w', 'ww');
-> 'wwwwww.MysqL.com'
17、repeat(str,count) :返回由count个字符串str连成的一个字符串(任何参数为null时
返回null,count<=0时返回一个空字符串)
MysqL> select repeat('MysqL', 3);
18、reverse(str) :颠倒字符串str的字符顺序并返回
MysqL> select reverse('abc');
-> 'cba'
19、insert(str,pos,len,newstr)
作用:把字符串str由位置pos起len个字符长的子串替换为字符串newstr并返回
MysqL> select insert('quadratic', 3, 4, 'what');
-> 'quwhattic'
20、lcase(str)/lower(str)/ucase(str)/upper(str) :返回str的大小写
21、elt(n,str1,str2,str3,...) :返回第n个字符串(n小于1或大于参数个数返回null)
MysqL> select elt(1, 'ej', 'heja', 'hej', 'foo');
-> 'ej'
MysqL> select elt(4, 'ej', 'heja', 'hej', 'foo');
-> 'foo'
二、数学函数
1、pow(x,y)/power(x,y) :返回值x的y次幂
MysqL> select pow(2,2);
-> 4.000000
MysqL> select pow(2,-2);
-> 0.250000
2、sqrt(n) :返回非负数n的平方根
MysqL> select sqrt(4);
-> 2.000000
MysqL> select sqrt(20);
-> 4.472136
3、pi() : 返回圆周率
MysqL> select pi();
-> 3.141593
4、rand()/rand(n) :返回在范围0到1.0内的随机浮点值(可以使用数字n作为初始值)
MysqL> select rand();
-> 0.5925
MysqL> select rand(20);
-> 0.1811
MysqL> select rand(20);
-> 0.1811
MysqL> select rand();
-> 0.2079
MysqL> select rand();
-> 0.7888
5、truncate(n,d) : 保留数字n的d位小数并返回
MysqL> select truncate(1.223,1);
-> 1.2
MysqL> select truncate(1.999,1);
-> 1.9
MysqL> select truncate(1.999,0);
-> 1
6、least(x,y,...) :返回最小值(如果返回值被用在整数(实数或大小敏感字串)上下文或所有参数都是整数(实数或大小敏感字串)则他们作为整数(实数或大小敏感字串)比较,否则按忽略大小写的字符串被比较)
MysqL> select least(2,0);
-> 0
MysqL> select least(34.0,3.0,5.0,767.0);
-> 3.0
MysqL> select least("b","a","c");
-> "a"
7、greatest(x,y,...) :返回最大值(其余同least())
MysqL> select greatest(2,0);
-> 2
MysqL> select greatest(34.0,3.0,5.0,767.0);
-> 767.0
MysqL> select greatest("b","a","c");
-> "c"
8、mod(n,m) :取模运算,返回n被m除的余数(同%操作符)
9、floor(n) :返回不大于n的最大整数值
10、ceiling(n) : 返回不小于n的最小整数值
MysqL> select ceiling(1.23);
-> 2
MysqL> select ceiling(-1.23);
-> -1
11、round(n,d) :返回n的四舍五入值,保留d位小数(d的默认值为0)
MysqL> select round(-1.23);
-> -1
MysqL> select round(-1.58);
-> -2
MysqL> select round(1.58);
-> 2
MysqL> select round(1.298, 1);
-> 1.3
MysqL> select round(1.298, 0);
-> 1
12、abs(n) :返回n的绝对值
13、sign(n) :返回参数的符号(为-1、0或1)
MysqL> select sign(-32);
-> -1
MysqL> select sign(0);
-> 0
MysqL> select sign(234);
-> 1
14、exp(n) : 返回值e的n次方(自然对数的底)
MysqL> select exp(2);
-> 7.389056
MysqL> select exp(-2);
-> 0.135335
15、log(n) : 返回n的自然对数
MysqL> select log(2);
-> 0.693147
MysqL> select log(-2);
-> null
16、log10(n) : 返回n以10为底的对数
MysqL> select log10(2);
-> 0.301030
MysqL> select log10(100);
-> 2.000000
MysqL> select log10(-100);
-> null
17、cos(n) :返回n的余弦值
MysqL> select cos(pi());
-> -1.000000
18、sin(n) :返回n的正弦值
MysqL> select sin(pi());
-> 0.000000
19、tan(n) : 返回n的正切值
MysqL> select tan(pi()+1);
-> 1.557408
20、acos(n) : 返回n反余弦(n是余弦值,在-1到1的范围,否则返回null)
MysqL> select acos(1);
-> 0.000000
MysqL> select acos(1.0001);
-> null
MysqL> select acos(0);
-> 1.570796
21、asin(n) : 返回n反正弦值
MysqL> select asin(0.2);
-> 0.201358
MysqL> select asin('foo');
-> 0.000000
22、atan(n) :返回n的反正切值
-> 1.107149
-> -1.107149
23、atan2(x,y) : 返回2个变量x和y的反正切(类似y/x的反正切,符号决定象限)
-> -0.785398
-> 1.570796
24、cot(n) : 返回x的余切
MysqL> select cot(12);
-> -1.57267341
MysqL> select cot(0);
-> null
25、degrees(n) : 把n从弧度变换为角度并返回
-> 180.000000
26、radians(n) : 把n从角度变换为弧度并返回
-> 1.570796
三、时期时间函数
1、curdate() /current_date() : 以'yyyy-mm-dd'或yyyymmdd格式返回当前日期值(根据返回值所处上下文是字符串或数字)
MysqL> select curdate();
-> '1997-12-15'
MysqL> select curdate() + 0;
-> 19971215
2、curtime() / current_time() :以'hh:mm:ss'或hhmmss格式返回当前时间值(根据返回值所处上下文是字符串或数字)
MysqL> select curtime();
-> '23:50:26'
MysqL> select curtime() + 0;
-> 235026
3、Now()/sysdate()/current_timestamp() : 以'yyyy-mm-dd hh:mm:ss'或yyyymmddhhmmss格式返回当前日期
时间(根据返回值所处上下文是字符串或数字)
-> '1997-12-15 23:50:26'
-> 19971215235026
4、dayofweek(date) : 返回日期date是星期几(1=星期天,2=星期一,……7=星期六,odbc标准)
MysqL> select dayofweek('1998-02-03');
-> 3
5、weekday(date) : 返回日期date是星期几(0=星期一,1=星期二,……6= 星期天)。
MysqL> select weekday('1997-10-04 22:23:00');
-> 5
MysqL> select weekday('1997-11-05');
-> 2
6、dayname(date) : 返回date是星期几(按英文名返回)
MysqL> select dayname("1998-02-05");
-> 'thursday'
7、dayofmonth(date) : 返回date是一月中的第几日(在1到31范围内)
MysqL> select dayofmonth('1998-02-03');
-> 3
8、dayofyear(date) :返回date是一年中的第几日(在1到366范围内)
MysqL> select dayofyear('1998-02-03');
-> 34
9、month(date) :返回date中的月份数值
MysqL> select month('1998-02-03');
-> 2
10、monthname(date): 返回date是几月(按英文名返回)
MysqL> select monthname("1998-02-05");
-> 'february'
11、quarter(date): 返回date是一年的第几个季度
MysqL> select quarter('98-04-01');
-> 2
12、week(date,first) :返回date是一年的第几周(first默认值0,first取值1表示周一是周的开始,0从周日开始)
MysqL> select week('1998-02-20');
-> 7
MysqL> select week('1998-02-20',0);
-> 7
MysqL> select week('1998-02-20',1);
-> 8
13、year(date):返回date的年份(范围在1000到9999)
MysqL> select year('98-02-03');
-> 1998
14、hour(time) : 返回time的小时数(范围是0到23)
MysqL> select hour('10:05:03');
-> 10
15、minute(time) :返回time的分钟数(范围是0到59)
MysqL> select minute('98-02-03 10:05:03');
-> 5
16、second(time) : 返回time的秒数(范围是0到59)
MysqL> select second('10:05:03');
-> 3
17、period_add(p,n) : 增加n个月到时期p并返回(p的格式yymm或yyyymm)
MysqL> select period_add(9801,2);
-> 199803
18、period_diff(p1,p2) : 返回在时期p1和p2之间月数(p1和p2的格式yymm或yyyymm)
MysqL> select period_diff(9802,199703);
-> 11
19、date_add(date,interval expr type)/date_sub(date,interval expr type)/adddate(date,interval expr type)/subdate(date,interval expr type) 对日期时间进行加减法运算。(也可以用运算符+和-。 date:一个datetime或date值;expr:对date进行加减法的一个表达式字符串;type指明表达式expr应该如何被解释)
type 含义 表达式的格式
second 秒 seconds
minute 分 minutes
hour 时 hours
day 天 days
month 月 months
year 年 years
minute_second 分钟和秒 minutes:seconds
hour_minute 小时和分钟 hours:minutes
day_hour 天和小时 days:hours
year_month 年和月 years-months
hour_second 小时分钟秒 hours:minutes:seconds
day_minute 天小时分钟 days:hours:minutes
day_second 天小时分钟秒 days:hours:minutes:seconds
expr中允许任何标点做分隔符,如果所有是date值时结果是一个date值,否则结果是一个datetime值。day_second因为缺少小时分钟等于minute_second。如果增加month、year_month或year,天数大于结果月份的最大天数则使用最大天数
MysqL> select "1997-12-31 23:59:59" + interval 1 second;
-> 1998-01-01 00:00:00
MysqL> select interval 1 day + "1997-12-31";
-> 1998-01-01
MysqL> select "1998-01-01" - interval 1 second;
-> 1997-12-31 23:59:59
MysqL> select date_add("1997-12-31 23:59:59",interval 1 second);
-> 1998-01-01 00:00:00
MysqL> select date_add("1997-12-31 23:59:59",interval 1 day);
-> 1998-01-01 23:59:59
MysqL> select date_add("1997-12-31 23:59:59",interval "1:1" minute_second);
-> 1998-01-01 00:01:00
MysqL> select date_sub("1998-01-01 00:00:00",interval "1:1:1:1" day_second);
-> 1997-12-30 22:58:59
MysqL> select date_add("1998-01-01 00:00:00", interval "-1:10" day_hour);
-> 1997-12-30 14:00:00
MysqL> select date_sub("1998-01-02", interval 31 day);
-> 1997-12-02
20、extract(part from date):用于截取时间分量
MysqL> select extract(year from "1999-07-02");
-> 1999
MysqL> select extract(year_month from "1999-07-02 01:02:03");
-> 199907
MysqL> select extract(day_minute from "1999-07-02 01:02:03");
-> 20102
20、date_format(date,format) :根据format字符串格式化date值
(在format字符串中可用标志符:
%m 月名字(january……december)
%w 星期名字(sunday……saturday)
%d 有英语前缀的月份的日期(1st, 2nd, 3rd, 等等。)
%y 年, 数字, 4 位
%y 年, 数字, 2 位
%a 缩写的星期名字(sun……sat)
%d 月份中的天数, 数字(00……31)
%e 月份中的天数, 数字(0……31)
%m 月, 数字(01……12)
%c 月, 数字(1……12)
%b 缩写的月份名字(jan……dec)
%j 一年中的天数(001……366)
%H 小时(00……23)
%k 小时(0……23)
%h 小时(01……12)
%I 小时(01……12)
%l 小时(1……12)
%i 分钟, 数字(00……59)
%r 时间,12 小时(hh:mm:ss [ap]m)
%t 时间,24 小时(hh:mm:ss)
%s 秒(00……59)
%s 秒(00……59)
%p am或pm
%w 一个星期中的天数(0=sunday ……6=saturday )
%U 星期(0……53), 这里星期天是星期的第一天
%u 星期(0……53), 这里星期一是星期的第一天
%% 字符% )
MysqL> select date_format('1997-10-04 22:23:00','%w %m %y');
-> 'saturday october 1997'
MysqL> select date_format('1997-10-04 22:23:00','%h:%i:%s');
-> '22:23:00'
MysqL> select date_format('1997-10-04 22:23:00','%d %y %a %d %m %b %j');
-> '4th 97 sat 04 10 oct 277'
MysqL> select date_format('1997-10-04 22:23:00','%h %k %i %r %t %s %w');
-> '22 22 10 10:23:00 pm 22:23:00 00 6'
21、time_format(time,format) :和date_format()类似,但time_format只处理小时、分钟和秒(其余符号产生一个null值或0)
22、unix_timestamp() | unix_timestamp(date) :返回一个unix时间戳(从'1970-01-01 00:00:00'gmt开始的秒数,date默认值为当前时间)
MysqL> select unix_timestamp();
-> 882226357
MysqL> select unix_timestamp('1997-10-04 22:23:00');
-> 875996580
23、from_unixtime(unix_timestamp) :以'yyyy-mm-dd hh:mm:ss'或yyyymmddhhmmss格式返回时间戳的值(根据返回值所处上下文是字符串或数字)
MysqL> select from_unixtime(875996580);
-> '1997-10-04 22:23:00'
MysqL> select from_unixtime(875996580) + 0;
-> 19971004222300
24、from_unixtime(unix_timestamp,format) :以format字符串格式返回时间戳的值
MysqL> select from_unixtime(unix_timestamp(),'%y %d %m % h:%i:%s %x');
-> '1997 23rd december 03:43:30 x'
25、sec_to_time(seconds) :以'hh:mm:ss'或hhmmss格式返回秒数转成的time值(根据返回值所处上下文是字符串或数字)
MysqL> select sec_to_time(2378);
-> '00:39:38'
MysqL> select sec_to_time(2378) + 0;
-> 3938
26、time_to_sec(time) :返回time值有多少秒
MysqL> select time_to_sec('22:23:00');
-> 80580
MysqL> select time_to_sec('00:39:38');
-> 2378
到此,相信大家对“MysqL数据库字符串函数有哪些”有了更深的了解,不妨来实际操作一番吧!这里是编程之家网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。