MySQL 字符串截取函数;
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MySQL 字符串截取函数;相关的知识,希望对你有一定的参考价值。
*left(), right(), substring(), substring_index(),mid(), substr(),mid(), substr() 等价于 substring() 函数
1. 字符串截取:left(str, length) mysql> select left(‘example.com‘, 3); +-------------------------+ | left(‘example.com‘, 3) | +-------------------------+ | exa | +-------------------------+ 2. 字符串截取:right(str, length) mysql> select right(‘example.com‘, 3); +--------------------------+ | right(‘example.com‘, 3) | +--------------------------+ | com | +--------------------------+ //从一个字段取后两位字符更新到另外一个字段 update `historydata` set `last2`=right(last3, 2);
_________
以上是关于MySQL 字符串截取函数;的主要内容,如果未能解决你的问题,请参考以下文章