mysql 字串常用查詢語句

2022-10-05 13:45:21 字數 566 閱讀 3684

1、字串合併。

select concat('hello ','world');

返回結果:hello world

2、對個字串合併,並在每個字串之間新增"-"。

select concat_ws("-","hello","world","!");

返回結果:hello-world-!

3、返回字串s的前n個字元,left(s,n)

select left('runoob',2);

返回結果:ru

4、從字串s的n位置擷取長度為,mid(s,n,len)

同substring(s,n,len)

例項:從字串runoob中的第2個位置擷取3個字元

select mid("runoob",2,3);

select substring("runoob",2,3);

返回結果:uno

5、從字串s的start位置擷取長度為length的子字串,ubstr(s,start,length)

select substr("runoob",2,3);

返回結果:uno

mysql 查詢字串

mysql中查詢特定字串 以特定字串開頭 例如在表emp中查詢city以母音字母開頭的記錄,並且不重複,有如下方式可以達到目的 select distinct city from emp where city left upper city 1 in a e i o u select distinc...

mysql常用字串 MYSQL常用字串函式寶典

mysql常用字串函式 想更進一步加強自己在查詢語句方面的能力,需要掌握常用函式。字串函式 1 concat s1,s2,sn 將s1,s2,sn串聯成乙個字串。exp root test 14 43 desc t1 field type null key default extra id int ...

mysql 常用查詢語句

1 在原有的時間欄位上做加減 1 減幾天date sub update bg outpatient test set test time date sub test time,interval 30 day where test time sysdate 2 加幾天adddate update bg...