MySQL支持的函數(shù):
- 操作字符串的函數(shù)
- 操作數(shù)值的函數(shù)
- 操作日期的函數(shù)
- 獲取系統(tǒng)信息的函數(shù)
- 字符串函數(shù)
(1) 合并字符串函數(shù)CONCAT()和CONCAT_WS()
select concat('my','s','ql') '合并后字符串';
select concat_ws('-','my','sql') '合并后字符串';
(2) 比較字符串大小函數(shù)STRCMP()
select strcmp('abc', 'abd'),
strcmp('abc','abc'),
strcmp('abc','abb');
(3) 獲取字符串長(zhǎng)度函數(shù)LENGTH()和字符數(shù)函數(shù)CHAR_LENGTH()
select 'MySQL' '英文字符串',
length('MySQL') '字符串字節(jié)長(zhǎng)度',
'麻再挺' '中文字符串',
length('麻再挺') '字符串字節(jié)長(zhǎng)度';
(4) 實(shí)現(xiàn)大小寫(xiě)轉(zhuǎn)換函數(shù)UPPER()/UCASE()和LOWER()
select UPPER('mysql') '轉(zhuǎn)換后字符串',
UCASE('mysql') '轉(zhuǎn)換后字符串',
LOWER('MYSQL') '轉(zhuǎn)換后字符串';
(5) 查找字符串
- 返回字符串位置的FIND_IN_SET()函數(shù)
select find_in_set('mysql','oracle,sql server,mysql') '位置';
- 返回指定字符串位置的FIELD()函數(shù)
select field('mysql','oracle','sql server','mysql') '位置';
- 返回子字符串相匹配的開(kāi)始位置
函數(shù): LOCATE()旷祸、POSITION()耕拷、INSTR()
select locate('sql','mysql') '位置',
position('sql' in 'mysql') '位置',
instr('mysql', 'sql') '位置';
- 返回指定位置的字符串的ELT()函數(shù)
select elt(1,'mysql','oracle','sql server') '第一個(gè)位置的字符串';
- 選擇字符串的MAKE_SET()函數(shù)
select bin(7) '二進(jìn)制數(shù)',
make_set(7,'mysql','oracle','sql server', 'postgresql') '選取后的字符串';
(6) 從現(xiàn)有字符串中截取子字符串
- 從左邊或右邊截取子字符串
LEFT(str,num)/RIGHT(str,num)
select left('mysql',2) '前兩個(gè)字符串', right('mysql',3) '后三個(gè)字符串';
- 截取指定位置和長(zhǎng)度子字符串
SUBSTRING(str,num,len)/MID(str,num,len)
select substring('oraclemysql',7,5) '截取子字符串',
mid('oraclemysql',7,5) '截取子字符串';
(7) 去除字符串的首尾空格
- 去除字符串開(kāi)始處空格
LTRIM(str)
select concat('-',' mysql ','-') '原來(lái)的字符串',
concat('-',ltrim(' mysql '),'-') '處理后字符串';
- 去除字符串結(jié)束時(shí)空格
select concat('-',' mysql ','-') '原來(lái)的字符串',
concat('-',rtrim(' mysql '),'-') '處理后字符串';
- 去除字符串首尾空格
select concat('-',' mysql ','-') '原來(lái)的字符串',
concat('-',trim(' mysql '),'-') '處理后字符串';
(8) 替換字符串
- 使用INSERT()函數(shù)
select insert('這是MySQL數(shù)據(jù)庫(kù)管理系統(tǒng)',3,5,'Oracle') '轉(zhuǎn)換后字符串';
- 使用REPLACE()函數(shù)
select replace('這是MySQL數(shù)據(jù)庫(kù)管理系統(tǒng)','MySQL','Oracle') '轉(zhuǎn)換后字符串';
- 數(shù)值函數(shù)
(1) 獲取隨機(jī)數(shù)
select rand(),rand(3);
(2) 獲取整數(shù)
select ceil(4.3), ceiling(-2.5);
select floor(4.3), floor(-2.5);
(3) 截取數(shù)值函數(shù)
select truncate(903.53567,2), truncate(903.53567,-1);
(4) 四舍五入函數(shù)
select round(903.53567), round(-903.53567);
- 日期和時(shí)間函數(shù)
(1) 獲取當(dāng)前日期和時(shí)間
- 獲取當(dāng)前日期和時(shí)間
select now() 'now方式', current_timestamp() 'timestamp方式',
localtime() 'localtime方式', sysdate() 'systemdate當(dāng)時(shí)';
- 獲取當(dāng)前日期
select curdate() 'curdate方式', current_date() 'current_date方式';
- 獲取當(dāng)前時(shí)間
select curtime() 'curtime方式', current_time() 'current_time方式';
(2) 通過(guò)各種方式顯示日期和時(shí)間
- 通過(guò)UNIX顯示日期和時(shí)間
select now() '當(dāng)前時(shí)間',
unix_timestamp(now()) 'unix格式',
from_unixtime(unix_timestamp(now())) '普通格式';
- 通過(guò)UTC方式顯示日期和時(shí)間
select now() '當(dāng)前日期和時(shí)間',
utc_date() 'utc日期',
utc_time() 'utc時(shí)間';
(3) 獲取日期和時(shí)間各部分值
select now() '當(dāng)前日期和時(shí)間',
year(now()) '年',
quarter(now()) '季度',
month(now()) '月',
week(now()) '星期',
dayofmonth(now()) '天',
hour(now()) '小時(shí)',
minute(now()) '分',
second(now()) '秒';
- 關(guān)于月的函數(shù)
select now() '當(dāng)前日期和時(shí)間',
month(now()) '月',
monthname(now()) '月';
- 關(guān)于星期的函數(shù)
select now() '當(dāng)前日期和時(shí)間',
week(now()) '年中第幾個(gè)星期',
weekofyear(now()) '年中第幾個(gè)星期',
dayname(now()) '星期',
dayofweek(now()) '星期',
weekday(now()) '星期';
- 關(guān)于天的函數(shù)
select now() '當(dāng)前日期和時(shí)間',
dayofyear(now()) '年中第幾天',
dayofmonth(now()) '月中第幾天';
- 獲取指定值的EXTRACT()函數(shù)
select now() '當(dāng)前日期和時(shí)間',
extract(year from now()) '年',
extract(month from now()) '月',
extract(day from now()) '天',
extract(hour from now()) '小時(shí)',
extract(minute from now()) '分',
extract(second from now()) '秒';
(4) 計(jì)算日期和時(shí)間
- 與默認(rèn)日期和時(shí)間操作
select now() '當(dāng)前日期和時(shí)間',
to_days(now()) '相隔天數(shù)',
from_days(to_days(now())) '一段時(shí)間后日期和時(shí)間';
# 計(jì)算兩個(gè)日期之間相隔的天數(shù)
select now() '當(dāng)前日期和時(shí)間',
datediff(now(), '2016-12-01') '相隔天數(shù)';
- 與指定日期和時(shí)間操作
select curdate() '當(dāng)前日期',
adddate(curdate(), 5) '5天后日期',
subdate(curdate(), 5) '5天前日期';
ADDDATE(d, INTERVAL expr type)
SUBDATE(d, INTERVAL expr type)
# 時(shí)間操作
select curtime() '當(dāng)前時(shí)間',
addtime(curtime(), 5) '5秒后時(shí)間',
subtime(curtime(), 5) '5秒前時(shí)間';
- 系統(tǒng)信息函數(shù)
(1) 獲取MySQL系統(tǒng)信息
select version() '版本號(hào)',
database() '數(shù)據(jù)庫(kù)名',
user() '用戶名';
(2) 獲取AUTO_INCREMENT約束的最后ID值
select last_insert_id();
(3) 其他函數(shù)