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

mysql字符串截取命令_MySQL

程序员文章站 2022-06-01 18:08:02
...
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