当前位置:Gxlcms > mysql > mysql字符串截取命令_MySQL

mysql字符串截取命令_MySQL

时间:2021-07-01 10:21:17 帮助过:3人阅读

bitsCN.com


mysql字符串截取命令

1. substring_index

substring_index(str,delim,count)

[html]

mysql> select substring_index('a-b-c-d','-',-1);

+-----------------------------------+

| substring_index('a-b-c-d','-',-1) |

+-----------------------------------+

| d |

+-----------------------------------+

1 row in set (0.00 sec)

mysql> select substring_index('a-b-c-d','-',1);

+----------------------------------+

| substring_index('a-b-c-d','-',1) |

+----------------------------------+

| a |

+----------------------------------+

1 row in set (0.00 sec)

2. SUBSTRING

SUBSTRING(str,pos,len)

SUBSTRING(str FROM pos FOR len)

SUBSTRING(str,pos)

SUBSTRING(str FROM pos)

[html]

mysql> select substring((substring_index('a-b-c-d','-',2)),2);

+-------------------------------------------------+

| substring((substring_index('a-b-c-d','-',2)),2) |

+-------------------------------------------------+

| -b |

+-------------------------------------------------+

1 row in set (0.01 sec)

bitsCN.com

人气教程排行