字符串函數
查看字符的ascii碼值ascii(str),str是空串時返回0
查看ascii碼值對應的字符char(數字)
拼接字符串concat(str1,str2...)
select concat(12,34,'ab');
包含字符個數length(str)
截取字符串
- left(str,len)返回字符串str的左端len個字符
- right(str,len)返回字符串str的右端len個字符
- substring(str,pos,len)返回字符串str的位置pos起len個字符
select substring('abc123',2,3);
去除空格
ltrim(str)返回刪除了左空格的字符串str
rtrim(str)返回刪除了右空格的字符串str
trim([方向 remstr from str)返回從某側刪除remstr后的字符串str,方向詞包括both、leading、trailing,表示兩側、左、右
select trim(' bar ');
select trim(leading 'x' FROM 'xxxbarxxx');
select trim(both 'x' FROM 'xxxbarxxx');
select trim(trailing 'x' FROM 'xxxbarxxx');
SELECT TRIM(LEADING ' ' FROM ' my ');
返回由n個空格字符組成的一個字符串space(n)
替換字符串replace(str,from_str,to_str)
select replace('abc123','123','def');
大小寫轉換,函數如下
數學函數
求絕對值abs(n)
求m除以n的余數mod(m,n),同運算符%
select mod(10,3);
select 10%3;
地板floor(n),表示不大于n的最大整數
天花板ceiling(n),表示不小于n的最大整數
求四舍五入值round(n,d),n表示原數,d表示小數位置,默認為0
求x的y次冪pow(x,y)
獲取圓周率PI()
隨機數rand(),值為0-1.0的浮點數
還有其它很多三角函數,使用時可以查詢文檔
日期時間函數
獲取子值,語法如下
- year(date)返回date的年份(范圍在1000到9999)
- month(date)返回date中的月份數值
- day(date)返回date中的日期數值
- hour(time)返回time的小時數(范圍是0到23)
- minute(time)返回time的分鐘數(范圍是0到59)
- second(time)返回time的秒數(范圍是0到59)
select year('2016-12-21');
日期計算,使用+-運算符,數字后面的關鍵字為year、month、day、hour、minute、second
select '2016-12-21'+interval 1 day;
日期格式化date_format(date,format),format參數可用的值如下
獲取年%Y,返回4位的整數
* 獲取年%y,返回2位的整數
* 獲取月%m,值為1-12的整數
獲取日%d,返回整數
* 獲取時%H,值為0-23的整數
* 獲取時%h,值為1-12的整數
* 獲取分%i,值為0-59的整數
* 獲取秒%s,值為0-59的整數
select date_format('2016-12-21','%Y %m %d');
當前日期current_date()
當前時間current_time()
當前日期時間now()
以上就是本次介紹的全部相關知識點,如果大家有任何需要補充的地方可以聯系腳本之家的小編。
您可能感興趣的文章:- MySQL高效模糊搜索之內置函數locate instr position find_in_set使用詳解