MySQL的擷取字串和鏈結字串函式

2022-05-03 22:36:15 字數 414 閱讀 9027

mysql在查詢或者更新資料的時候,有字串函式可用。

擷取字串函式:substring、instr

用法如下:

update `table` set field5 = substring(field5  , 1 , instr( field5 ,'-')-1) where id = 1; //

這裡,要從field5裡面最開始一直擷取到『-』的地方(不包括『-』)。注意,substring是從1開始,而不是一般的程式函式從0開始。

用法如下:

update `table` set field5 = concact(field5  , 'somestr') where id = 1; //

這裡,要吧field5和『somestr』鏈結起來,再更新到field5

mysql擷取字串

一 mysql擷取字串函式 1 left str,length 從左邊擷取length 2 right str,length 從右邊擷取length 3 substring str,index 當index 0從左邊開始擷取直到結束 當index 0從右邊開始擷取直到結束 當index 0返回空 4...

mysql擷取字串

mysql 字串擷取函式 left right substring substring index 還有 mid substr 其中,mid substr 等價於 substring 函式,substring 的功能非常強大和靈活。1.字串擷取 left str,length mysql selec...

mysql擷取字串

擷取從左開始字串數 select left 4 name 擷取從右開始字串數 select right 3 name 擷取從字串第五位開始 直到結束 select substring 5 從字串的第 6 個字元位置開始取,只取 2 個字元。select substring 6,2 從字串的第 4 個...