一千行MySQL學習筆記(十)

來源:互聯網
上載者:User

標籤:

--// 內建函數 ----------
-- 數值函數
abs(x) -- 絕對值 abs(-10.9) = 10
format(x, d) -- 格式化千分位元值 format(1234567.456, 2) = 1,234,567.46
ceil(x) -- 向上取整 ceil(10.1) = 11
floor(x) -- 向下取整 floor (10.1) = 10
round(x) -- 四捨五入去整
mod(m, n) -- m%n m mod n 求餘 10%3=1
pi() -- 獲得圓周率
pow(m, n) -- m^n
sqrt(x) -- 算術平方根
rand() -- 隨機數
truncate(x, d) -- 截取d位小數

-- 時間日期函數
now(), current_timestamp(); -- 當前日期時間
current_date(); -- 當前日期
current_time(); -- 目前時間
date(‘yyyy-mm-dd hh:ii:ss‘); -- 擷取日期部分
time(‘yyyy-mm-dd hh:ii:ss‘); -- 擷取時間部分
date_format(‘yyyy-mm-dd hh:ii:ss‘, ‘%d %y %a %d %m %b %j‘); -- 格式化時間
unix_timestamp(); -- 獲得unix時間戳記
from_unixtime(); -- 從時間戳記獲得時間

-- 字串函數
length(string) -- string長度,位元組
char_length(string) -- string的字元個數
substring(str, position [,length]) -- 從str的position開始,取length個字元
replace(str ,search_str ,replace_str) -- 在str中用replace_str替換search_str
instr(string ,substring) -- 返回substring首次在string中出現的位置
concat(string [,...]) -- 串連字串
charset(str) -- 返回字串字元集
lcase(string) -- 轉換成小寫
left(string, length) -- 從string2中的左邊起取length個字元
load_file(file_name) -- 從檔案讀取內容
locate(substring, string [,start_position]) -- 同instr,但可指定開始位置
lpad(string, length, pad) -- 重複用pad加在string開頭,直到字串長度為length
ltrim(string) -- 去除前端空格
repeat(string, count) -- 重複count次
rpad(string, length, pad) --在str後用pad補充,直到長度為length
rtrim(string) -- 去除後端空格
strcmp(string1 ,string2) -- 逐字元比較兩字串大小

-- 流程函數
case when [condition] then result [when [condition] then result ...] [else result] end 多分支
if(expr1,expr2,expr3) 雙分支。

-- 彙總函式
count()
sum();
max();
min();
avg();
group_concat()

-- 其他常用函數
md5();
default();

(未完待續) 

          (Shocker 來源:http://www.cnblogs.com/shockerli/p/1000-plus-line-mysql-notes.html)

一千行MySQL學習筆記(十)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.