方法:1、利用right函數,語法為「update 表名set 指定欄位= right(指定欄位, length(指定欄位)-1)...」;2、利用substring函數,語法為“select substring(指定欄位,2)..”。
本教學操作環境:windows10系統、mysql8.0.22版本、Dell G3電腦。
MySQL 字串截取相關函數:
1、從右邊開始截取字串##
right(str, length)
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)
select substring(content,5) as abstract from my_content_t select substring(content,5,200) as abstract from my_content_t
以上是mysql怎麼去掉第一個字符的詳細內容。更多資訊請關注PHP中文網其他相關文章!