MySql單行函式整理

2021-10-23 18:48:43 字數 773 閱讀 9884

lower('sql course') => sql course

upper('sql course') => sql course

concat('hello','world') => helloworld

substr('helloworld',1,5)=>hello

length('helloworld')=>10

instr('helloworld','w')=>6

lpad(salary,10,'*')=>*****24000

rpad(salary,10,'*')=>24000*****

trim('h' from 'helloworld') elloworld

replace('abcd','b','m')=>amcd

round(45.926,2)=>45.93(四捨五入)

truncate(45.926,2)=>45.93(截斷)

mod(1600,300)=>100(求餘)

例子查詢部門號為

10, 20, 30

的員工資訊

, 若部門號為

10,

則列印其工資的

1.1

倍, 20

號部門,

則列印其工資的

1.2

倍, 30 號部門

列印其工資的

1.3 倍數

mysql 行函式 MySQL 單行函式

lower hellowrold upper helloworld 字元控制函式 select replace abcdababab p m 將 abcdababab 中的字元p替換成m select trim from hhhhhello.hhhworldhhhhh 去掉兩邊的空格。select ...

MySQL 常見函式(單行函式)

二,數學函式 三,日期函式 四,其他函式 五,流程控制函式 select 函式名 實參列表 from 表 1,單行函式 如concat,length,ifnull等 2,分組函式 又稱為統計函式,聚合函式,組函式 功能 做統計使用一,字元函式 1,length 函式 int length strin...

04 MySQL常見函式 單行函式

單行函式細分 1 字元函式 2 數學函式 3 日期函式 4 其他函式 5 流程控制函式 單行函式 字元函式 一 字元函式 1.length 獲取引數的位元組長度 select length john select length 張三丰 utf 8編碼,1個漢字3個位元組 檢視當前客戶端的字符集 sh...