mysql 函數(二)

來源:互聯網
上載者:User

標籤:

1、space(N) 輸出空格

SELECT SPACE(5);

-> ‘     ‘

2、replace(str,from_str,to_str) 講str中的from_str 替換成to_str

SELECT REPLACE(‘http://www.baidu.com.cn‘,‘baidu‘,‘google‘);

-> http://www.google.com.cn

3、repeat(str,N) 重複輸出N遍str

SELECT REPEAT(‘what‘,2);

-> whatwhat

4、reverse() 反向輸出括弧內的內容

SELECT REVERSE(123);

-> 321

5、insert(str1,pos,len,str2) str1字串的pos位置開始進行替換插入,str2替換的pos+len的字串長度的內容

SELECT INSERT(‘123456‘,3,2,‘haha‘);

-> 12haha56

 6、elt(pos,str1,str2,str3..) 列印pos位置的str

SELECT ELT(4,‘what‘,‘ahahaha‘,‘haha‘,‘ah‘);

-> ah

7、field(str,str1,str2,str3,str4...) 輸出str的pos,沒有的情況下,輸出null

SELECT FIELD(‘ah‘,‘what‘,‘ahahaha‘,‘haha‘,‘ah‘);

-> 4

8、lower() 大寫變小寫 upper(),ucase()小寫變大寫

SELECT LOWER(‘Abc‘);

-> abc

SELECT UPPER(‘Abc‘);

-> ABC

SELECT UCASE(‘Abc‘);

-> ABC

9、load_file(file_name)

UPDATE table_name
SET blob_column=LOAD_FILE("/tmp/picture")
WHERE id=1;

10、concat(),group_concat() 

SELECT CONCAT(‘hello‘,‘world‘);

-> helloworld

mysql 函數(二)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.