欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  数据库

几个常用的mysql截取函数

程序员文章站 2022-03-28 09:06:04
...

常用的mysql截取函数有:left(), right(), substring(), substring_index()
下面来一一说明一下:
1.左截取left(str, length)

几个常用的mysql截取函数
2.右截取right(str, length)

几个常用的mysql截取函数
3.substring(str, pos); substring(str, pos, len)

几个常用的mysql截取函数
4.substring_index(str,delim,count)

几个常用的mysql截取函数

以上就是几个常用的mysql截取函数 的详细内容,更多请关注其它相关文章!

相关标签: mysql,截取