mySQL學習入門教程 4 內建函式

2021-09-14 01:36:59 字數 4063 閱讀 9590

開發十年,就只剩下這套架構體系了! >>>

四、內建函式:

包括了字串函式、數值函式、日期函式、流程控制函式、其他函式(獲取資料庫資訊)...

一、字串函式【比較常用,需要掌握】

1、 concat(s1,s2,...,sn)   #把傳入的引數連線成乙個字串

select concat('abc','def');

select concat(name,' age is ',age) from users;

2、insert(str,m,n,inser_str) #將str的從m位置開始的n個字元替換為inser_str

select insert('abcdef',2,3,'123456');

select insert(name,3,2,'haha') from users;

select insert(name,2,2,'00') from users;

3、lower(str)/upper(str) #將字串str轉換成小寫/大寫

select lower('hello'),upper('hello');

select lower('hello') as 'hello',upper('hello')as 'hello';

select * from users where upper(name) = 'aaa';

4、left(str,n)/right(str,n) #分別返回str最左邊/最右邊的n個字元,如果n<=> null 則任何東西不返回

select left('123',3),right('123456',3),left('123',null);

5、lpad(str,n,pad)/rpad(str,n,pad) #用字串pad對str的最左邊/最右邊進行填充,知道滿足str含有n個字元為止

select name,lpad(name,10,'#'),rpad(name,10,'@') from users;

6、trim(str)/ltrim(str)/rtrim(str) #去除字串str左右空格/左空格/右空格

select concat('#',trim(" abc "),'#'),concat('#',ltrim(' abc '),'#'),concat('#',rtrim(' abc '),'#');

7、replace(str,sear_str,sub_str) #將字串str中所有出現的sear_str字串替換為sub_str

select replace('abcdefgabcd','cd','***') ;

8、strcmp(str1,str2) #以ascii碼比較字串str1,str2,返回-1(str1< str2)/0(str1= str2)/1(str1 > str2)

select strcmp('aa','bb'),strcmp('aa','aa'),strcmp('bb','aa');

9、substring(str,n,m) #返回字串str中從n起,m個字元長度的字串

select substring('abcdef',2,3);

select name,substring(name,1,2) as subname from users;

二、數值函式

1、abs(x) #返回x的絕對值

select abs(10),abs(-10);

select abs(age) from users;

2、ceil(x) #返回大於x的最小整數

3、floor(x) #返回小於x的最大整數

select ceil(2.1),ceil(2.5),ceil(2.9),floor(2.1),floor(2.5),floor(2.9);

4、mod(x,y) #返回x/y的模,與x%y作用相同

select mod(null,11);

5、rand() #返回0~1之間的隨機數

select rand();

select ceil(rand() * 100); #取0~100之間的整數隨機數

select floor(rand() * 100);

6、round(n,m) #返回n四捨五入之後含有m位小數的值,m值預設為0

select round(1.23);

select round(1.456,2);

7、truncate(n,m) #返回數字n被截斷為m位小數的數值

select truncate(1.234,2);

select truncate(1.235,2),round(1.235,2);

三、日期函式

1、curdate() #返回當前日期

2、curtime() #返回當前時間

select curdate(),curtime();

3、now() #返回當前日期+時間

select now();

4、unix_timestamp(now())#返回unix當前時間的時間戳

select unix_timestamp(now()); #從計算機元年(1971-1-100:00:00)到現在的秒數

5、from_unixtime() #將時間戳(整數)轉換為「日期+時間(xx-xx-***x:xx:xx)」的形式

select from_unixtime(1392853616);

6、week(now()) #返回當前時間是第幾周

7、year(now()) #返回當前是xx年

8、hour(now())/hour(curtime()) #返回當前時間的小時數

9、minute(curtime()) #返回當期的分鐘數

...select week(now()),year(now()),hour(now());

select week(from_unixtime(1392853616)); #返回unix時間戳中的週期數

10、month name(now())/monthname(curdate()) #返回當前月的英文名

11、date_format(now(),"%y-%m-%d%h:%i%s") #將當期時間格式化

select date_format(now(),"%y-%m-%d %h:%i%s");

select date_format(now(),"%y%m%d %h:%i%s");

四、流程控制函式

1、if(value,true,false) #如果value值為真,則返回true,否則,返回false

select if (salary > 3000,'hight','low') from salary;

select id,salary, if (salary <=> null,'null','not null') from salary;

2、ifnull(value1,value2)#如果value1不為空,則返回value1,不然返回value2

#可以用來進行空值替換

select ifnull(salary,0.00) from salary;

3、case when [value] then … else …end #如果value值為真,執行then之後的語句,不然執行eles後的語句,不要忘記end!

select case when salary <= 3000 then "low" else "hight"end from salary;

五、其他函式

1、database() #當前資料庫

2、version() #當前資料庫版本

3、user() #當前登入使用者

select database();

4、inet_aton(ip) #ip位址的網路位元組順序

select inet_aton('192.168.139.1');

5、inet_ntoa() #返回數字所代表的ip

select inet_ntoa(3232271105);

6、password(str) #返回加密的str字串

select password("123456"); #返回乙個41位長的加密字串,只是用於給mysql系統使用者進行加密

7、md5() #在應用程式中進行資料加密,比如在c++程式中

select md5(「123456」);

MySql入門教程

一 連線mysql 格式 mysql h主機位址 u使用者名稱 p使用者密碼 1 例1 連線到本機上的mysql。首先在開啟dos視窗,然後進入目錄 mysqlbin,再鍵入命令mysql uroot p,回車後提示你輸密碼,如果剛安裝好mysql,超級使用者root是沒有密碼的,故直接回車即可進入...

MySQL簡明入門教程

宣告 sql關鍵字不區分大小寫,注釋使用 建立mt test這個資料庫 create datebase mt test 選擇使用資料庫,意思是後面的操作的資料庫表預設使用該資料庫 use mt test 刪除資料庫 drop datebase mt test 建立表,f id是自增欄位,f id也是...

css入門教程資料(4)

九 控制顏色和背景的樣式 控制顏色和背景的樣式包括顏色屬性 背景顏色 背景 背景重複 背景固定 背景定位六個部分。1 顏色屬性 基本格式如下 color 引數 顏色引數取值範圍 以rgb值表示 以16進製制 hex 的色彩值表示 以預設顏色的英文名稱表示 2 背景顏色 在html當中,要為某個物件加...