我的编程空间,编程开发者的网络收藏夹
学习永远不晚

MySQL 常见str函数

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

MySQL 常见str函数

MySQL常见的字符串函数

整理自官档。

1.1     SUBSTR or SUBSTRING

SUBSTR(str,pos), SUBSTR(str FROM pos),SUBSTR(str,pos,len), SUBSTR(str FROM

pos FOR len)

SUBSTR() is a synonym for SUBSTRING().

SUBSTRING(str,pos), SUBSTRING(str FROM pos),SUBSTRING(str,pos,len),

SUBSTRING(str FROM pos FOR len)

The forms without a len argument return asubstring from string str starting at position pos.

The forms with a len argument return asubstring len characters long from string str, starting at

position pos. The forms that use FROM arestandard SQL syntax. It is also possible to use a negative

value for pos. In this case, the beginningof the substring is pos characters from the end of the

string, rather than the beginning. Anegative value may be used for pos in any of the forms of this

function.

For all forms of SUBSTRING(), the positionof the first character in the string from which the

substring is to be extracted is reckoned as1.

mysql> SELECTSUBSTRING('Quadratically',5);

-> 'ratically'

mysql> SELECT SUBSTRING('foobarbar' FROM4);

-> 'barbar'

mysql> SELECTSUBSTRING('Quadratically',5,6);

-> 'ratica'

mysql> SELECT SUBSTRING('Sakila', -3);

-> 'ila'

mysql> SELECT SUBSTRING('Sakila', -5,3);

-> 'aki'

mysql> SELECT SUBSTRING('Sakila' FROM -4FOR 2);

-> 'ki'

This function is multibyte safe.

If len is less than 1,the result is the empty string.

1.2     SUBSTRING_INDEX

SUBSTRING_INDEX(str,delim,count)

Returns the substring from string strbefore count occurrences of the delimiter delim. If count

is positive, everything to the left of thefinal delimiter (counting from the left) is returned. If count

is negative, everything to the right of thefinal delimiter (counting from the right) is returned.

SUBSTRING_INDEX() performs a case-sensitivematch when searching for delim.

mysql> SELECTSUBSTRING_INDEX('www.mysql.com', '.', 2);

-> 'www.mysql'

mysql> SELECTSUBSTRING_INDEX('www.mysql.com', '.', -2);

-> 'mysql.com'

This function is multibyte safe.

1.3     CHAR_LENGTH

CHAR_LENGTH(str) 返回字符数

Returns the length of the string str,measured in characters. A multibyte character counts as a

single character. This means that for astring containing five 2-byte characters, LENGTH() returns

10, whereas CHAR_LENGTH() returns 5.

1.4     LENGTH

LENGTH(str) 返回字节数

Returns the length of the string str,measured in bytes. A multibyte character counts as multiple

bytes. This means that for a stringcontaining five 2-byte characters, LENGTH() returns 10, whereas

CHAR_LENGTH() returns 5.

mysql> SELECT LENGTH('text');


免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

MySQL 常见str函数

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

MySQL常见数值函数整理

目录绝对值函数求余函数获取整数的函数获取随机数的函数四舍五入的函数截取数值的函数符号函数幂运算函数总结绝对值函数语法格式:ABSandroid(X)例:查看三个数值的绝对值(负的绝对值为它的正整数,0的绝对值为0,正的绝对值为它本身)。
2023-02-28

MySQL常见数值函数怎么使用

本篇内容主要讲解“MySQL常见数值函数怎么使用”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“MySQL常见数值函数怎么使用”吧!绝对值函数语法格式:ABS(X)例:查看三个数值的绝对值(负的绝
2023-03-02

mysql常见单行函数有哪些

这篇文章将为大家详细讲解有关mysql常见单行函数有哪些,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。1、字符函数 concat拼接 substr截取子串 upper转换成大写 lo
2023-06-15

Mysql中有哪些常见的函数

这篇文章将为大家详细讲解有关Mysql中有哪些常见的函数,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。一、常见函数分类1.1单行函数:字符函数字符控制函数(CONCAT、SUBSTR、LEN
2023-06-14

MySQL处理JSON常见函数的使用

官方文档:JSON FunctionsNameDescriptionJSON_APPEND()Append data to JSON documentJSON_ARRAY()Create JSON arrayJSON_ARRAY_APPEN
2022-05-12

如何用MySQL处理JSON常见函数

本篇内容主要讲解“如何用MySQL处理JSON常见函数”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“如何用MySQL处理JSON常见函数”吧!官方文档:JSON FunctionsNameDes
2023-06-07

对MySQL函数substring_index(str,delim,count)的兼容

目录 环境 文档用途 详细信息 环境 系统平台:Microsoft Windows (64-bit) 2012 版本:5.6.5   文档用途 对MySQL函数substring_index(str,delim,count)进行兼容 详细信息 MySQL函数功
对MySQL函数substring_index(str,delim,count)的兼容
2019-07-15

PHP 函数常见错误的常见原因

php函数常见的错误原因有:函数不存在:函数未声明或导入。函数签名错误:调用签名与声明签名不匹配。参数类型不匹配:传递参数类型与声明类型不符。返回类型不匹配:返回类型与声明类型不一致。PHP 函数常见错误的常见原因PHP 函数中常见的错误
PHP 函数常见错误的常见原因
2024-04-13

MySQL函数之初见

MySQL函数基本语法函数申明要声明返回类型,用returns指定。函数体中要有返回语句,return 返回值。函数执行有别与存储过程执行,不需要Call关键字。定义一个返回时间和uuid拼接字符串的函数-- 创建函数CREATE FUNCTION my_fu
2018-03-26

python re模块常见函数

re.match()函数如果想要从源字符串的起始位置匹配一个模式,我们可以使用re.match()函数。re.match()函数的使用格式是:re.match(pattern, string, flag)re.search()函数我们还可以
2023-01-31

python常见的内置函数

函数分为自定义函数和内置函数python内置函数分类:一、强制转换int() / str() / bool() / list() / tuple() / dict() / set()二、输入输出input() / print()三、数学相关
2023-01-31

MySQL常见内置函数以及其使用教程

目录1、聚合函数2、日期函数3、字符串函数4、数学函数5、其它函数总结1、聚合函数函数说明COUNT([DISTINCT] expr) 返回查询到的数据的 数量SUM([DISTINCT] expr)返回查询到的数据的 总和,不是php数
2022-12-30

编程热搜

目录