方法:1、利用right函數,語法為「update 表名set 指定欄位= right(指定欄位, length(指定欄位)-1)...」;2、利用substring函數,語法為“select substring(指定欄位,2)..”。
本教學操作環境:windows10系統、mysql8.0.22版本、Dell G3電腦。
MySQL 字串截取相關函數:
1、從右邊開始截取字串##
right(str, length)說明:right(被截取字段,截取長度)範例:
select right(content,200) as abstract from my_content_t移除指定欄位的第一個字元」
update 表名 set 指定字段 = right(指定字段, length(指定字段)-1) WHERE 指定字段 like '"%';
2、截取字串
substring(str, pos) substring(str, pos, length)說明:substring(被截取字段,從第幾位開始截取)substring(被截取字段,從第幾位開始截取,截取長度) 例:
select substring(content,5) as abstract from my_content_t select substring(content,5,200) as abstract from my_content_t(註:如果位數是負數如-5 則是從後倒數位數,到字串結束或截取的長度)推薦學習:
以上是mysql怎麼去掉第一個字符的詳細內容。更多資訊請關注PHP中文網其他相關文章!