mysql 提供以下截取字符串函數:1. substring(str, start, length);2. left(str, length);3. right(str, length)。示例:截取 “hello world” 的前 5 個字符:substring(“hello world”, 1, 5);截取 “hello world” 的前 3 個字符:left(“hello world”, 3);截取 “hello world” 的后 3 個字符:right(“hello world”,
MySQL 截取字符串的函數
MySQL 提供了以下函數來截取字符串:
SUBSTRING 函數
SUBSTRING(str, start, length)
str:要截取的字符串。
start:要開始截取的字符位置(從 1 開始)。
length:要截取的字符數。
LEFT 函數
LEFT(str, length)
str:要截取的字符串。
length:要截取的字符數(從左開始)。
RIGHT 函數
RIGHT(str, length)
str:要截取的字符串。
length:要截取的字符數(從右開始)。
例子
使用 SUBSTRING 函數
截取字符串 “Hello World” 中第一個到第五個字符:
SELECT SUBSTRING("Hello World", 1, 5);
登錄后復制
結果:”Hello”
使用 LEFT 函數
截取字符串 “Hello World” 中的前三個字符:
SELECT LEFT("Hello World", 3);
登錄后復制
結果:”Hel”
使用 RIGHT 函數
截取字符串 “Hello World” 中的后三個字符:
SELECT RIGHT("Hello World", 3);
登錄后復制
結果:”rld”