首頁 > 軟體

MySQL常見內建函數以及其使用教學

2022-12-31 14:02:27

1、聚合函數

函數說明
COUNT([DISTINCT] expr)
返回查詢到的資料的 數量
SUM([DISTINCT] expr)
返回查詢到的資料的 總和,不是數位沒有意義
AVG([DISTINCT] expr)
返回查詢到的資料的 平均值,不是數位沒有意義
MAX([DISTINCT] expr)
返回查詢到的資料的 最大值,不是數位沒有意義
MIN([DISTINCT] expr)
返回查詢到的資料的 最小值,不是數位沒有意義

範例:

準備工作,建立一個僱員資訊表(來自 oracle 9i 的經典測試表)

  • EMP員工表
  • DEPT部門表
  • SALGRADE工資等級表

統計公司員工人數

select count(*) from emp;

 統計公司每月發放薪資

select sum(sal) from emp;

統計員工月平均薪資

select avg(sal) 平均月薪 from emp;

統計員工最高月薪

select max(sal) 最高月薪 from emp;

2、日期函數

函數名稱描述
current_date()當前日期
current_time()當前時間
current_timestamp()當前時間戳
date(datetime)返回datetime引數的日期部分
date_add(date, interval d_value_type)在date中新增日期或時間,interval數值單位可以是year,minute,second,day
date_sub(date, interval d_value_type)在date中減去日期或時間,interval數值單位可以是year,minute,second,day
datediff(date1, date2)兩個日期的差,單位是天
now()當前日期時間

範例:

獲得年月日、獲得時分秒、獲得時間戳

 在日期的基礎上加日期、計算兩個日期之間相差多少天

3、字串函數

函數說明
charset(str)返回字串字元集
concat(string [,...])連線字串
instr(string, substring)返回substring在string中出現的位置,沒有返回0
ucase(string)轉換成大寫
lcase(string)轉換成小寫
left(string, length)從string中的左邊起取length個字元
length(string)string的長度
replace(str, search_str, replace_str)在str中用replace_str替換search_str
strcmp(string1, string2)逐字元比較兩字串大小
substring(str, position [,length])從str的position開始,取length個字元
ltrim(string)   rtrim(string)   trim(string)去除前空格或後空格

範例:

獲取 emp 表的 ename 列的字元集

select charset(ename) from emp;

要求顯示emp表中的員工薪資資訊,顯示格式:"某某的崗位是:,的部門是: ,的月薪是: "。

select concat(ename,'  的崗位是: ', job,' 的部門是: ', deptno,'  的月薪是: ', sal) as 員工資訊 from emp limit 2;

 擷取emp表中ename欄位的第二個到第三個字元

select substring(ename, 2, 2), ename from emp;

以首字母小寫的方式顯示所有員工的姓名

select concat(lcase(substring(ename, 1, 1)),substring(ename,2)) from EMP;

4、數學函數

函數說明
abs(number)絕對值函數
bin(decimal_number)十進位制轉換二進位制
hex(decimal_number)轉換成十六進位制
conv(number, from_base, to_base)進位制轉換
ceiling(number)向上取整
floor(number)向下取整
format(number, decimal_places)格式化,保留小數位數
hex(decimal_number)轉換成十六進位制
rand()返回隨機浮點數,範圍[0.0, 1.0]
mod(number, denominator)取模,求餘

絕對值,向上取整,兩位小數

5、其它函數

user() 查詢當前使用者

select user();

md5(str)對一個字串進行md5摘要,摘要後得到一個32位元字串

select md5('asd');

database()顯示當前正在使用的資料庫

select database();

password()函數,MySQL資料庫使用該函數對使用者加密

select password('root');

ifnull(val1, val2) 如果val1為null,返回val2,否則返回val1的值

總結

到此這篇關於MySQL常見內建函數以及其使用的文章就介紹到這了,更多相關MySQL常見內建函數內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com