最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

Mysql常用運(yùn)算符與函數(shù)匯總

 更新時(shí)間:2017年09月20日 08:32:42   作者:我想回家  
本文給大家匯總介紹了mysql中的常用的運(yùn)算符以及常用函數(shù)的用法及示例,非常的全面,有需要的小伙伴可以參考下

我們先把數(shù)據(jù)表建好

use test;
create table `employee`(
 emp_no int unsigned,
 emp_name varchar(30),
 emp_sex varchar(3),
 emp_age tinyint unsigned,
 sal double,
 history datetime
);
insert into employee values(1, '張三', '男', 18, 5000, '2012-04-23'),
(2, '李四', '男', 27, 4500, '2013-05-23'),
(3, '王五', '男', 23, 4700, '2012-04-21'),
(4, '子龍', '男', 19, 3800, '2011-03-04'),
(5, '李白', '男', 15, 6200, '2015-09-09'),
(6, '劉備', '男', 28, 2500, '2016-02-11'),
(7, '呂布', '男', 21, 6000, '2010-10-18'),
(8, '尚香', '女', 16, 4500, '2011-09-26'),
(9, '小喬', '女', 15, null, '2013-07-05'),
(10, '大喬', '女', 16, 5000, '2017-09-01');

常用的運(yùn)算符:
1: 等于( = )

 select * from employee where sal = 3800;
 select * from employee where sal = null;  --這里查詢不到為null的數(shù)據(jù)

2: 等于( <=> )

 select * from employee where sal <=> 3800;
 select * from employee where sal <=> null; --這里可以查詢到為null的數(shù)據(jù)

3: is判斷(null)

 select * from employee where sal is null;
 select * from employee where sal is not null;

4: null值判斷還可以使用isnull();

 select * from employee where isnull(sal);
 select * from employee where !isnull(sal);

5: 在區(qū)間(between)內(nèi)  between min and max  ps:這里是一個(gè)閉區(qū)間

    select * from employee where sal between 4500 and 5000;

6: 不在區(qū)間內(nèi)

    select * from employee where sal not between 4500 and 5000;  --null不為包括進(jìn)去

7: and 和 or

 select * from employee where sal not between 4500 and 5000 or sal is null;
 select * from employee where sal = 4500 and emp_sex = '女';

8: 小于(<), 大于(>), 小于等于(<=), 大于等于(>=)

    select * from employee where sal >= 4500;

***************************************************************************************************************

數(shù)學(xué)函數(shù)
1: rand();

 select rand() from dual; --dual是一個(gè)偽表
 select 1+1 from dual;
 select rand(); --可以簡寫

2: least(value1, value2, ...) 返回最小值

 select least(54,76,4,65,76,87,87,56,65,654,45,23,1,76);
 select least(54,76,4,65,76,87,87,56,65,654,45,23,1,76) as min_value; --列名可以起一個(gè)別名

3: greatest(value1, value2, ...) 返回最大值

    select greatest(54,76,4,65,76,87,87,56,65,654,45,23,1,76);

4: round(M, D); 返回M的四舍五入的值, D表示要保留幾們小數(shù),默認(rèn)值是0

 select round(1.69);
 select round(1.69, 1);

5: abs() 絕對值

 select 5-10;
 select abs(5-10);

***************************************************************************************************************

匯總函數(shù)

1: avg(); 

 select * from employee where sal >= 6000;
 select avg(sal) from employee where sal >= 6000;

2: count()

 select count(*) from employee;
 select count(emp_name) from employee;
 select count(sal) from employee;  --打印9 這里會(huì)忽略null值
 select count(*) from employee where sal >= 4000;
 select count(*) from employee where sal <= 4000 or sal is null;

3: sum()

    select sum(sal) from employee where sal >= 6000;

4: min()

    select min(sal) from employee;

5: max()

    select max(sal) from employee;

***************************************************************************************************************

日期函數(shù)

1: 獲取當(dāng)前的日期時(shí)間

 select now(), sysdate(), current_timestamp();
 select now(6), sysdate(6), current_timestamp(6);
 ps: now(), current_timestamp();沒有區(qū)別, 表示sql開始執(zhí)行時(shí)的時(shí)間
  sysdate()表示這個(gè)函數(shù)開始時(shí)間

2: 獲取當(dāng)前日期

    select curdate();   --只有年月日

3: 獲取當(dāng)前時(shí)間

    select curtime();   --只有時(shí)分秒

4: 日期的加運(yùn)算date_add     

 select history, date_add(history, interval '1 12:10' day_minute) from employee; --date_add(history, interval '1 12:10' day_minute)
 select history, date_add(history, interval '1-1' year_month) from employee;  --date_add(history, interval '1-1' year_month)
 select history, date_add(history, interval '1' second) from employee;    --date_add(history, interval '1' second)

5: 日期的減運(yùn)算data_sub

    select history, date_sub(history, interval '1-1' year_month) from employee; 

6: 計(jì)算日期差

    select history, sysdate(), datediff(sysdate(), history) from employee;     --以天數(shù)來表示

7: 獲取日期的指定部分(把日期轉(zhuǎn)換為指定的格式)  date_format()

 select history, date_format(history, '%Y年%m月%d號') from employee;
 select history, date_format(history, '%d號') from employee;
 select history, date_format(history, '%Y年%m月%d號 %H時(shí)%i分%s秒') from employee;

8: 計(jì)算出一個(gè)日期是星期幾

    select history, dayname(history) from employee;

9: 中文日期字符串轉(zhuǎn)換日期str_to_date()
 

 insert into employee values(11, '張飛', '男', 22, 3000, '2017年02月01號'); --報(bào)錯(cuò)
 insert into employee values(11, '張飛', '男', 22, 3000, str_to_date('2017年02月01號', '%Y年%m月%d號 %H時(shí)%i分%s秒'));

    insert into employee values(12, '二哥', '男', 22, 3000, str_to_date('2017年02月01號 23時(shí)02分02秒', '%Y年%m月%d號 %H時(shí)%i分%s秒'));
    insert into employee values(12, '二哥', '男', 22, 3000, str_to_date('2017年02月01號 11時(shí)02分02秒', '%Y年%m月%d號 %h時(shí)%i分%s秒'));
    ps: 如果是h則表示12小制, 如果是大H則表示24小明制;

字符串函數(shù)

1: left(str, len) 返回字符串str的左端len個(gè)字符

    select left('abcdefg', 5);
 

2: length()

    select length('abcdefg');

3: lower(str) 返回小寫的字符串str

    select lower('HELLO');

4: substring() 取子字符串, 第二個(gè)參數(shù)是截取的起始位置, 第三個(gè)參數(shù)是要截取的長度

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

5: concat() 字符串拼接

    select concat(emp_name, '員工') from employee;

6: replace(替換

    select replace(emp_name, '李', '老') from employee where emp_name = '李四';

相關(guān)文章

  • 使用MySQL子查詢和CASE語句判斷關(guān)聯(lián)狀態(tài)

    使用MySQL子查詢和CASE語句判斷關(guān)聯(lián)狀態(tài)

    在這篇文章中,我們將詳細(xì)講解如何使用 MySQL 的子查詢和 CASE 語句來實(shí)現(xiàn)復(fù)雜的邏輯判斷,具體案例是我們有兩個(gè)表 card_management 和 card_auth_register,通過代碼示例講解的非常詳細(xì),需要的朋友可以參考下
    2024-06-06
  • MySQL too many connections錯(cuò)誤的原因及解決

    MySQL too many connections錯(cuò)誤的原因及解決

    這篇文章主要介紹了MySQL too many connections錯(cuò)誤的原因及解決,幫助大家更好的理解和學(xué)習(xí)使用MySQL,感興趣的朋友可以了解下
    2021-03-03
  • mysql清空表數(shù)據(jù)的兩種方式和區(qū)別解析

    mysql清空表數(shù)據(jù)的兩種方式和區(qū)別解析

    這篇文章主要介紹了mysql清空表數(shù)據(jù)的兩種方式和區(qū)別,本文通過文字實(shí)例代碼相結(jié)合給大家介紹的非常詳細(xì),具有一定的參考借鑒價(jià)值,需要的朋友可以參考下
    2019-05-05
  • mysql超大分頁優(yōu)化的實(shí)現(xiàn)

    mysql超大分頁優(yōu)化的實(shí)現(xiàn)

    本文介紹了MySQL中處理超大分頁查詢的優(yōu)化方法,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2024-12-12
  • 深入理解MySQL的數(shù)據(jù)庫引擎的類型

    深入理解MySQL的數(shù)據(jù)庫引擎的類型

    本篇文章是對MySQL的數(shù)據(jù)庫引擎的類型進(jìn)行了詳細(xì)的分析介紹,需要的朋友參考下
    2013-06-06
  • MySQL如何添加環(huán)境變量和初始化MySQL

    MySQL如何添加環(huán)境變量和初始化MySQL

    本文主要介紹了如何在Windows系統(tǒng)中添加MySQL的環(huán)境變量以及如何初始化MySQL,通過添加環(huán)境變量,可以在任意一個(gè)命令提示符中直接調(diào)用MySQL的相關(guān)程序,大大簡化了操作,初始化MySQL時(shí),需要新建一個(gè)配置文件并指定默認(rèn)編碼集和存儲(chǔ)引擎,如果初始化過程中出現(xiàn)錯(cuò)誤
    2024-11-11
  • mysql 顯示SQL語句執(zhí)行時(shí)間的代碼

    mysql 顯示SQL語句執(zhí)行時(shí)間的代碼

    查看 MySQL 語法 詳細(xì)執(zhí)行時(shí)間 與 CPU/記憶體使用量: MySQL Query Profiler
    2009-08-08
  • Navicat連接mysql報(bào)錯(cuò)1251錯(cuò)誤的解決方法

    Navicat連接mysql報(bào)錯(cuò)1251錯(cuò)誤的解決方法

    這篇文章主要為大家詳細(xì)介紹了Navicat連接mysql報(bào)錯(cuò)1251錯(cuò)誤的解決方法,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2022-07-07
  • mysql 計(jì)算函數(shù)詳情

    mysql 計(jì)算函數(shù)詳情

    這篇文章主要介紹了mysql 計(jì)算函數(shù),函數(shù)沒有SQL的可移植性強(qiáng) 能運(yùn)行在多個(gè)系統(tǒng)上的代碼稱為可移植的(portable)。相對來說,多數(shù)SQL語句是可移植的,在SQL實(shí)現(xiàn)之間有差異時(shí),這些差異通常不那么難處理,下面來看看文章的具體內(nèi)容吧
    2021-10-10
  • 有關(guān)mysql中ROW_COUNT()的小例子

    有關(guān)mysql中ROW_COUNT()的小例子

    mysql中的ROW_COUNT()可以返回前一個(gè)SQL進(jìn)行UPDATE,DELETE,INSERT操作所影響的行數(shù)
    2013-02-02

最新評論

昭觉县| 抚州市| 通城县| 休宁县| 社旗县| 姜堰市| 毕节市| 彭阳县| 永年县| 彰化县| 陈巴尔虎旗| 青铜峡市| 汉阴县| 阿瓦提县| 柏乡县| 邮箱| 勐海县| 通山县| 荥阳市| 眉山市| 山东省| 徐州市| 高阳县| 东乡| 元氏县| 晋州市| 剑阁县| 泰宁县| 凤庆县| 砀山县| 曲靖市| 正镶白旗| 简阳市| 深泽县| 永丰县| 社会| 金门县| 永川市| 克什克腾旗| 田林县| 昭苏县|