# 从左侧截取,截取指定长度
select left
("字段名",len) from table
# 从右侧截取,截取指定长度
select right
("字段名",len) from table
# 从中间某个位置截取指定长度
select MID("字段名",pos,len) from table
# 从某个位置开始之后所有的字符
select SUBSTR("字段名",pos,len) from table
select left
("字段名",len) from table
# 从右侧截取,截取指定长度
select right
("字段名",len) from table
# 从中间某个位置截取指定长度
select MID("字段名",pos,len) from table
# 从某个位置开始之后所有的字符
select SUBSTR("字段名",pos,len) from table