【mysql】mysql的SUBSTRING_INDEX

本文介绍了 MySQL 中 SUBSTRING_INDEX 函数的使用方法,该函数用于返回字符串 str 在指定分隔符 delim 出现 count 次之前的部分。如果 count 为正数,则返回从左边数第 count 个分隔符左边的所有字符;若 count 为负数,则返回从右边数第 count 个分隔符右边的所有字符。示例展示了如何利用此函数进行字符串切割。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

SUBSTRING_INDEX(str,delim,count) 

Returns the substring from string str before count occurrences of the delimiter delim. If count is positive, everything to the left of the final delimiter (counting from the left) is returned. If count is negative, everything to the right of the final delimiter (counting from the right) is returned. SUBSTRING_INDEX() performs a case-sensitive match when searching for delim. 

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

This function is multi-byte safe. 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值