以下的文章主要介紹的是MySQL存儲過程中的基本函數即,對字符串類與MySQL數據庫存儲過程基本函數中的數學類的介紹,以下就是具體內容的描述,希望在你今後的學習中會對其有所幫助。
一.字符串類
CHARSET(str) //返回字串字符集
CONCAT (string2 [,... ]) //連接字串
INSTR (string ,substring ) //返回substring首次在string中出現的位置,不存在返回0
LCASE (string2 ) //轉換成小寫
LEFT (string2 ,length ) //從string2中的左邊起取length個字符
LENGTH (string ) //string長度
LOAD_FILE (file_name ) //從文件讀取內容
LOCATE (substring , string [,start_position ] ) 同INSTR,但可指定開始位置
LPAD (string2 ,length ,pad ) //重復用pad加在string開頭,直到字串長度為length
LTRIM (string2 ) //去除前端空格
REPEAT (string2 ,count ) //重復count次
REPLACE (str ,search_str ,replace_str ) //在str中用replace_str替換search_str
RPAD (string2 ,length ,pad) //在str後用pad補充,直到長度為length
RTRIM (string2 ) //去除後端空格
STRCMP (string1 ,string2 ) //逐字符比較兩字串大小,
SUBSTRING (str , position [,length ]) //從str的position開始,取length個字符,
注:MySQL存儲過程中處理字符串時,默認第一個字符下標為1,即參數position必須大於等於1
- MySQL> select substring(’abcd’,0,2);
- +———————–+
- | substring(’abcd’,0,2) |
- +———————–+
- | |
- +———————–+
- 1 row in set (0.00 sec)
- MySQL> select substring(’abcd’,1,2);
- +———————–+
- | substring(’abcd’,1,2) |
- +———————–+
- | ab |
- +———————–+
- 1 row in set (0.02 sec)
TRIM([[BOTH|LEADING|TRAILING] [padding] FROM]string2) //去除指定位置的指定字符
UCASE (string2 ) //轉換成大寫
RIGHT(string2,length) //取string2最後length個字符
SPACE(count) //生成count個空格