SQL笔记4:mysql切割字符串的4种方式


前言

本文参考了https://blog.csdn.net/qq_37260640/article/details/79731295
题目来源于牛客网sql52:
获取Employees中的first_name


SQL笔记4:mysql切割字符串的4种方式_第1张图片

代码如下:

//使用right(str,len)
//str:表示待截取的字符串,len截取长度(从最右边开始)
*/
select
    first_name
from
    employees
order by
    right(first_name,2);
/*
另外3中切割字符串的方法
	1)left(str,len):与right类似,只不过是从最左边开始
	2)substring(str, pos):pos表示从第几位开始截取
	   比如:substring('example',1) -> example
	   		substring('example',1) -> xample
	   substring(str, pos, len)
	   		:pos表示从第几位开始截取
			:len表示截取的长度
	3)substring_index(str,delim,count)
			delim:表示以该字符分隔
			count:delim出现的次数
		比如:substring_index(abc.d.e.f,'.',1) -> abc
			 substring_index(abc.d.e.f,'.',3) -> abc.d.e
*/

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