zoukankan      html  css  js  c++  java
  • MYSQL基础

    数据库

    数据库(database,DB)是指长期存储在计算机内的,有组织,可共享的数据的集合。数据库中的数据按一定的数学模型组织、描述和存储,具有较小的冗余,较高的数据独立性和易扩展性,并可为各种用户共享。

    数据库管理系统软件

    数据库管理系统(Database Management System)是一种操纵和管理数据库的大型软件,用于建立、使用和维护数据库,简称DBMS。它对数据库进行统一的管理和控制,以保证数据库的安全性和完整性。用户通过DBMS访问数据库中的数据,数据库管理员也通过dbms进行数据库的维护工作。它可使多个应用程序和用户用不同的方法在同时或不同时刻去建立,修改和询问数据库。大部分DBMS提供数据定义语言DDL(Data Definition Language)和数据操作语言DML(Data Manipulation Language),供用户定义数据库的模式结构与权限约束,实现对数据的追加、删除等操作。

    数据库管理系统是数据库系统的核心,是管理数据库的软件。数据库管理系统就是实现把用户意义下抽象的逻辑数据处理,转换成为计算机中具体的物理数据处理的软件。有了数据库管理系统,用户就可以在抽象意义下处理数据,而不必顾及这些数据在计算机中的布局和物理位置。

    常见的数据库管理软件:甲骨文的oracle,IBM的db2,sql server, Access,Mysql(开源,免费,跨平台).

    数据库系统

    数据库系统DBS(Data Base System,简称DBS)通常由软件、数据库和数据管理员组成。其软件主要包括操作系统、各种宿主语言、实用程序以及数据库管理系统。数据库由数据库管理系统统一管理,数据的插入、修改和检索均要通过数据库管理系统进行。数据管理员负责创建、监控和维护整个数据库,使数据能被任何有权使用的人有效使用。

                           

    mysql

    mysql的管理

    安装

    linux:

    --yum -y install mariadb mariadb-server
    OR
    --yum -y install mysql mysql-server

    win:

    --http://dev.mysql.com/downloads/mysql/ 

    启动

    --service mysqld start  #开启
    --chkconfig mysqld on   #设置开机自启
    OR
    --systemctl start mariadb
    --systemctl enable mariadb

    查看

    -- ps aux |grep mysqld    #查看进程
    -- netstat -an |grep 3306 #查看端口

    设置密码

    -- mysqladmin -uroot password '123'   #设置初始密码,初始密码为空因此-p选项没有用
    -- mysqladmin -u root -p123 password '1234' #修改root用户密码

    登录

    -- mysql               #本地登录,默认用户root,空密码,用户为root@127.0.0.1
    -- mysql -uroot -p1234 #本地登录,指定用户名和密码,用户为root@127.0.0.1
    -- mysql -uroot -p1234 -h 192.168.31.95 #远程登录,用户为root@192.168.31.95

    mysql的常用命令

    复制代码
    -- 
    -- 启动mysql服务与停止mysql服务命令:
    -- 
    -- net start mysql
    -- net stop  mysql
    -- 
    -- 
    -- 登陆与退出命令:
    -- 
    --    mysql -h 服务器IP -P 端口号 -u  用户名 -p 密码 --prompt 命令提示符  --delimiter 指定分隔符
    --    mysql -h 127.0.0.1 -P 3306 -uroot -p123
    --    quit------exit----q;
    -- 
    -- 
    -- s;   ------my.ini文件:[mysql] default-character-set=gbk [mysqld] character-set-server=gbk
    -- 
    -- prompt 命令提示符(D:当前日期 d:当前数据库  u:当前用户)
    -- 
    -- T(开始日志) 	(结束日志)
    -- 
    -- show warnings;
    -- 
    -- help() ? h
    -- 
    -- G;
    -- 
    -- select now();
    -- select version();
    -- select user;
    -- 
    -- c 取消命令
    -- 
    -- delimiter 指定分隔符
    复制代码

    忘记密码怎么办?

    方法1:启动mysql时,跳过授权表

    复制代码
    [root@controller ~]# service mysqld stop
    [root@controller ~]# mysqld_safe --skip-grant-table &
    [root@controller ~]# mysql
    mysql> select user,host,password from mysql.user;
    +----------+-----------------------+-------------------------------------------+
    | user     | host                  | password                                  |
    +----------+-----------------------+-------------------------------------------+
    | root     | localhost             | *A4B6157319038724E3560894F7F932C8886EBFCF |
    | root     | localhost.localdomain |                                           |
    | root     | 127.0.0.1             |                                           |
    | root     | ::1                   |                                           |
    |          | localhost             |                                           |
    |          | localhost.localdomain |                                           |
    | root     | %                     | *23AE809DDACAF96AF0FD78ED04B6A265E05AA257 |
    +----------+-----------------------+-------------------------------------------+
    mysql> update mysql.user set password=password("123") where user="root" and host="localhost";
    mysql> flush privileges;
    mysql> exit
    [root@controller ~]# service mysqld restart
    [root@controller ~]# mysql -uroot -p123
    复制代码

    方法2(删库):

    删除与权限相关的库mysql,所有的授权信息都丢失,主要用于测试数据库或者刚刚建库不久没有授权数据的情况(从删库到跑路)
    [root@controller ~]# rm -rf /var/lib/mysql/mysql
    [root@controller ~]# service mysqld restart
    [root@controller ~]# mysql

    sql及其规范

    sql是Structured Query Language(结构化查询语言)的缩写。SQL是专为数据库而建立的操作命令集,是一种功能齐全的数据库语言。

    在使用它时,只需要发出“做什么”的命令,“怎么做”是不用使用者考虑的。SQL功能强大、简单易学、使用方便,已经成为了数据库操作的基础,并且现在几乎所有的数据库均支持sql。

    <1> 在数据库系统中,SQL语句不区分大小写(建议用大写) 。但字符串常量区分大小写。建议命令大写,表名库名小写;

    <2> SQL语句可单行或多行书写,以“;”结尾。关键词不能跨多行或简写。

    <3> 用空格和缩进来提高语句的可读性。子句通常位于独立行,便于编辑,提高可读性。

    1
    2
    SELECT * FROM tb_table
                WHERE NAME="YUAN";

    <4> 注释:单行注释:--

                   多行注释:/*......*/

    <5>sql语句可以折行操作

    <6> DDL,DML和DCL

    -- --SQL中 DML、DDL、DCL区别 .
    -- 
    -- 
    -- -- DML(data manipulation language):
    --    它们是SELECT、UPDATE、INSERT、DELETE,就象它的名字一样,这4条命令是用来对数据库里的
    --    数据进行操作的语言
    -- 
    -- -- DDL(data definition language):
    --    DDL比DML要多,主要的命令有CREATE、ALTER、DROP等,DDL主要是用在定义或改变表(TABLE)
    --    的结构,数据类型,表之间的链接和约束等初始化工作上,他们大多在建立表时使用
    -- 
    -- -- DCL(Data Control Language):
    --    是数据库控制功能。是用来设置或更改数据库用户或角色权限的语句,包括(grant,deny,revoke等)
    --    语句。在默认状态下,只有sysadmin,dbcreator,db_owner或db_securityadmin等人员才有权
    --    力执行DCL
    View Code

    数据库操作(DDL)

    复制代码
    -- 1.创建数据库(在磁盘上创建一个对应的文件夹)
        create database [if not exists] db_name [character set xxx] 
    

    -- 2.查看数据库
    show databases;查看所有数据库
    show
    create database db_name; 查看数据库的创建方式

    -- 3.修改数据库
    alter database db_name [character set xxx]

    -- 4.删除数据库
    drop database [if exists] db_name;

    -- 5.使用数据库
    切换数据库 use db_name; -- 注意:进入到某个数据库后没办法再退回之前状态,但可以通过use进行切换
    查看当前使用的数据库 select database();

    复制代码

    mysql数据类型

    MySQL支持多种类型,大致可以分为三类:数值、日期/时间和字符串(字符)类型。

    数值类型

    下面的表显示了需要的每个整数类型的存储和范围。

    日期和时间类型

    表示时间值的日期和时间类型为DATETIME、DATE、TIMESTAMP、TIME和YEAR。

    每个时间类型有一个有效值范围和一个"零"值,当指定不合法的MySQL不能表示的值时使用"零"值。

    字符串类型

    字符串类型指CHAR、VARCHAR、BINARY、VARBINARY、BLOB、TEXT、ENUM和SET。该节描述了这些类型如何工作以及如何在查询中使用这些类型。

    CHAR和VARCHAR类型类似,但它们保存和检索的方式不同。它们的最大长度和是否尾部空格被保留等方面也不同。在存储或检索过程中不进行大小写转换。

    BINARY和VARBINARY类类似于CHAR和VARCHAR,不同的是它们包含二进制字符串而不要非二进制字符串。也就是说,它们包含字节字符串而不是字符字符串。

    BLOB是一个二进制大对象,可以容纳可变数量的数据。有4种BLOB类型:TINYBLOB、BLOB、MEDIUMBLOB和LONGBLOB。它们只是可容纳值的最大长度不同。

    有4种TEXT类型:TINYTEXT、TEXT、MEDIUMTEXT和LONGTEXT。这些对应4种BLOB类型,有相同的最大长度和存储需求。

    数据表操作

    基础操作

    复制代码
    -- 1.创建表(类似于一个excel表)
    
        <span style="color: #0000ff;">create</span> <span style="color: #0000ff;">table</span><span style="color: #000000;"> tab_name(
            field1 type</span><span style="color: #ff0000;">[</span><span style="color: #ff0000;">完整性约束条件</span><span style="color: #ff0000;">]</span><span style="color: #000000;">,
            field2 type,
            ...
            fieldn type
        )</span><span style="color: #ff0000;">[</span><span style="color: #ff0000;">character set xxx</span><span style="color: #ff0000;">]</span><span style="color: #000000;">;
    
         </span><span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> 创建一个员工表employee</span>
    
         <span style="color: #0000ff;">create</span> <span style="color: #0000ff;">table</span><span style="color: #000000;"> employee(
            id </span><span style="color: #0000ff;">int</span> <span style="color: #0000ff;">primary</span> <span style="color: #0000ff;">key</span><span style="color: #000000;"> auto_increment ,
            name </span><span style="color: #0000ff;">varchar</span>(<span style="color: #800000; font-weight: bold;">20</span><span style="color: #000000;">),
            gender </span><span style="color: #0000ff;">bit</span> <span style="color: #0000ff;">default</span> <span style="color: #800000; font-weight: bold;">1</span>,   <span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> gender char(1)  default 1   -----    或者 TINYINT(1) </span>
    

    birthday date,
    entry_date date,
    job
    varchar(20),
    salary
    double(4,2) unsigned,
    resume
    text -- 注意,这里作为最后一个字段不加逗号
    );

    </span><span style="color: #008080;user-select:none;">/*</span><span style="color: #008080;user-select:none;"> 约束:
       primary key (非空且唯一)  :能够唯一区分出当前记录的字段称为主键!
       unique
       not null
       auto_increment 主键字段必须是数字类型。
       外键约束 foreign key  </span><span style="color: #008080;user-select:none;">*/</span>
    

    -- 2.查看表信息
    desc tab_name 查看表结构
    show columns
    from tab_name 查看表结构
    show tables 查看当前数据库中的所有的表
    show
    create table tab_name 查看当前数据库表建表语句

    -- 3.修改表结构
    -- (1)增加列(字段)
    alter table tab_name add [column] 列名 类型[完整性约束条件][first|after 字段名];
    alter table user add addr varchar(20) not null unique first/after username;
    #添加多个字段
    alter table users2
    add addr varchar(20),
    add age int first,
    add birth varchar(20) after name;

    -- (2)修改一列类型
    alter table tab_name modify 列名 类型 [完整性约束条件][first|after 字段名];
    alter table users2 modify age tinyint default 20;
    alter table users2 modify age int after id;

    -- (3)修改列名
    alter table tab_name change [column] 列名 新列名 类型 [完整性约束条件][first|after 字段名];
    alter table users2 change age Age int default 28 first;

    -- (4)删除一列
    alter table tab_name drop [column] 列名;
    -- 思考:删除多列呢?删一个填一个呢?
    alter table users2
    add salary float(6,2) unsigned not null after name,
    drop addr;

    -- (5)修改表名
    rename table 表名 to 新表名;
    -- (6)修该表所用的字符集
    alter table student character set utf8;

    -- 4.删除表
    drop table tab_name;

    ---5 添加主键,删除主键
    alter table tab_name add primary key(字段名称,...)
    alter table users drop primary key;

    eg:
    mysql</span><span style="color: #808080;">&gt;</span> <span style="color: #0000ff;">create</span> <span style="color: #0000ff;">table</span> test5(num <span style="color: #0000ff;">int</span><span style="color: #000000;"> auto_increment);
    ERROR </span><span style="color: #800000; font-weight: bold;">1075</span> (<span style="color: #800000; font-weight: bold;">42000</span>): Incorrect <span style="color: #0000ff;">table</span> definition; there can be <span style="color: #0000ff;">only</span> one auto <span style="color: #0000ff;">column</span> <span style="color: #808080;">and</span> it must be defined <span style="color: #0000ff;">as</span> a <span style="color: #0000ff;">key</span>
    <span style="color: #0000ff;">create</span> <span style="color: #0000ff;">table</span> test(num <span style="color: #0000ff;">int</span> <span style="color: #0000ff;">primary</span> <span style="color: #0000ff;">key</span><span style="color: #000000;"> auto_increment);
    </span><span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> 思考,如何删除主键?</span>
    <span style="color: #0000ff;">alter</span> <span style="color: #0000ff;">table</span> test modify id <span style="color: #0000ff;">int</span>;   <span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> auto_increment没了,但这样写主键依然存在,所以还要加上下面这句</span>
    <span style="color: #0000ff;">alter</span> <span style="color: #0000ff;">table</span> test <span style="color: #0000ff;">drop</span> <span style="color: #0000ff;">primary</span> <span style="color: #0000ff;">key</span>;<span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> 仅仅用这句也无法直接删除主键</span>
    

    -- 唯一索引
    alter table tab_name add unique [index|key] [索引名称](字段名称,...)

    </span><span style="color: #0000ff;">alter</span> <span style="color: #0000ff;">table</span> users <span style="color: #0000ff;">add</span> <span style="color: #0000ff;">unique</span>(name)<span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> 索引值默认为字段名show create table users;</span>
    <span style="color: #0000ff;">alter</span> <span style="color: #0000ff;">table</span> users <span style="color: #0000ff;">add</span> <span style="color: #0000ff;">unique</span> <span style="color: #0000ff;">key</span> <span style="color: #ff00ff;">user_name</span>(name);<span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> 索引值为user_name</span>
    
    <span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> 添加联合索引</span>
    <span style="color: #0000ff;">alter</span> <span style="color: #0000ff;">table</span> users <span style="color: #0000ff;">add</span> <span style="color: #0000ff;">unique</span> <span style="color: #0000ff;">index</span> name_age(name,age);#show <span style="color: #0000ff;">create</span> <span style="color: #0000ff;">table</span><span style="color: #000000;"> users;
    
    </span><span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> 删除唯一索引</span>
    <span style="color: #0000ff;">alter</span> <span style="color: #0000ff;">table</span> tab_name <span style="color: #0000ff;">drop</span> {<span style="color: #0000ff;">index</span><span style="color: #808080;">|</span><span style="color: #0000ff;">key</span>} index_name</pre>
    
    复制代码

    创建文章表

    create table article(
                id int primary key auto_increment ,
                title varchar(20),
                publish_date INT,
                click_num INT,
                is_top TINYINT(1),
                content TEXT
              );
    View Code

    完整性约束条件之主键约束

    单字段主键

    主键字段特点:非空且唯一

     create table users(
                id INT primary key,
                name varchar(20),
                city varchar(20)
              );
    View Code

    多字段联合主键

     create table users2(
                id INT,
                name varchar(20),
                city varchar(20),
                primary key(name,id)
              );
    View Code

    <1> 一张表只能有一个主键

    <2> 主键类型不一定非是整型

    表纪录操作

    表纪录之增,删,改

    复制代码
    -- 1.增加一条记录insert
    
      <span style="color: #008080;user-select:none;">/*</span><span style="color: #008080;user-select:none;">insert [into] tab_name (field1,filed2,.......) values (value1,value2,.......);</span><span style="color: #008080;user-select:none;">*/</span>
    
    
      <span style="color: #0000ff;">create</span> <span style="color: #0000ff;">table</span><span style="color: #000000;"> employee_new(
                 id </span><span style="color: #0000ff;">int</span> <span style="color: #0000ff;">primary</span> <span style="color: #0000ff;">key</span><span style="color: #000000;"> auto_increment,
                 name </span><span style="color: #0000ff;">varchar</span>(<span style="color: #800000; font-weight: bold;">20</span>) <span style="color: #808080;">not</span> <span style="color: #0000ff;">null</span> <span style="color: #0000ff;">unique</span><span style="color: #000000;">,
                 birthday </span><span style="color: #0000ff;">varchar</span>(<span style="color: #800000; font-weight: bold;">20</span><span style="color: #000000;">),<br>                 salary float(7,2)
                             );
    
       </span><span style="color: #0000ff;">insert</span> <span style="color: #0000ff;">into</span> employee_new (id,name,birthday,salary) <span style="color: #0000ff;">values</span><span style="color: #000000;">
                     (</span><span style="color: #800000; font-weight: bold;">1</span>,<span style="color: #ff0000;">'yuan</span><span style="color: #ff0000;">'</span>,<span style="color: #ff0000;">'</span><span style="color: #ff0000;">1990-09-09</span><span style="color: #ff0000;">',9000</span><span style="color: #000000;">);
    
       </span><span style="color: #0000ff;">insert</span> <span style="color: #0000ff;">into</span> employee_new <span style="color: #0000ff;">values</span><span style="color: #000000;">
       (</span><span style="color: #800000; font-weight: bold;">2</span>,<span style="color: #ff0000;">'</span><span style="color: #ff0000;">alex</span><span style="color: #ff0000;">'</span>,<span style="color: #ff0000;">'</span><span style="color: #ff0000;">1989-08-08</span><span style="color: #ff0000;">',3000</span><span style="color: #000000;">);
    
       </span><span style="color: #0000ff;">insert</span> <span style="color: #0000ff;">into</span> employee_new (name,salary) <span style="color: #0000ff;">values</span><span style="color: #000000;">
       ('xialv',1000);
    
      </span><span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> 插入多条数据</span>
       <span style="color: #0000ff;">insert</span> <span style="color: #0000ff;">into</span> employee_new <span style="color: #0000ff;">values</span><span style="color: #000000;">
       (4</span>,<span style="color: #ff0000;">'</span><span style="color: #ff0000;">alvin1</span><span style="color: #ff0000;">'</span>,<span style="color: #ff0000;">'</span><span style="color: #ff0000;">1993-04-20</span><span style="color: #ff0000;">',3000</span><span style="color: #000000;">),
       (5</span>,<span style="color: #ff0000;">'</span><span style="color: #ff0000;">alvin2</span><span style="color: #ff0000;">'</span>,<span style="color: #ff0000;">'</span><span style="color: #ff0000;">1995-05-12</span><span style="color: #ff0000;">',5000</span><span style="color: #000000;">);
    
      </span><span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> set插入: insert [into] tab_name set 字段名=值</span>
    
      <span style="color: #0000ff;">insert</span> <span style="color: #0000ff;">into</span> employee_new <span style="color: #0000ff;">set</span> id<span style="color: #808080;">=12</span>,name<span style="color: #808080;">=</span><span style="color: #000000;">"alvin3";
    

    -- 2.修改表记录 update tab_name set field1=value1,field2=value2,......[where 语句]

    <span style="color: #008080;user-select:none;">/*</span><span style="color: #008080;user-select:none;">      UPDATE语法可以用新值更新原有表行中的各列。
            SET子句指示要修改哪些列和要给予哪些值。
            WHERE子句指定应更新哪些行。如没有WHERE子句,则更新所有的行。</span><span style="color: #008080;user-select:none;">*/</span>
    
    
    <span style="color: #0000ff;">update</span> employee_new <span style="color: #0000ff;">set</span> birthday<span style="color: #808080;">=</span>"1989-10-24" <span style="color: #0000ff;">WHERE</span> id<span style="color: #808080;">=</span><span style="color: #800000; font-weight: bold;">1</span><span style="color: #000000;">;
    
    </span><span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;">- 将yuan的薪水在原有基础上增加1000元。</span>
    <span style="color: #0000ff;">update</span> employee_new <span style="color: #0000ff;">set</span> salary<span style="color: #808080;">=</span>salary<span style="color: #808080;">+</span><span style="color: #800000; font-weight: bold;">4000</span> <span style="color: #0000ff;">where</span> name<span style="color: #808080;">=</span><span style="color: #ff0000;">'</span><span style="color: #ff0000;">yuan</span><span style="color: #ff0000;">'</span><span style="color: #000000;">;
    

    -- 3.删除表纪录

     <span style="color: #0000ff;">delete</span> <span style="color: #0000ff;">from</span> tab_name <span style="color: #ff0000;">[</span><span style="color: #ff0000;">where ....</span><span style="color: #ff0000;">]</span>
    
        <span style="color: #008080;user-select:none;">/*</span><span style="color: #008080;user-select:none;">    如果不跟where语句则删除整张表中的数据
            delete只能用来删除一行记录
            delete语句只能删除表中的内容,不能删除表本身,想要删除表,用drop
            TRUNCATE TABLE也可以删除表中的所有数据,词语句首先摧毁表,再新建表。此种方式删除的数据不能在
            事务中恢复。</span><span style="color: #008080;user-select:none;">*/</span>
    
                <span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> 删除表中名称为’alex’的记录。</span>
                <span style="color: #0000ff;">delete</span> <span style="color: #0000ff;">from</span> employee_new <span style="color: #0000ff;">where</span> name<span style="color: #808080;">=</span><span style="color: #ff0000;">'</span><span style="color: #ff0000;">alex</span><span style="color: #ff0000;">'</span><span style="color: #000000;">;
                </span><span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> 删除表中所有记录。</span>
                <span style="color: #0000ff;">delete</span> <span style="color: #0000ff;">from</span> employee_new;<span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> 注意auto_increment没有被重置:alter table employee auto_increment=1;</span>
                <span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> 使用truncate删除表中记录。</span>
                <span style="color: #0000ff;">truncate</span> <span style="color: #0000ff;">table</span> emp_new;</pre>
    
    复制代码

    思考:

        <1>  存储时间用varchar可不可以呢?它与date数据类型又有什么区别呢?

        <2>  表中数据三条,id分别为1,2,3,突然插入一个id=7,那么下次作为主键的字增长的id会从几开始增长呢?(从7开始)

    表纪录之查(单表查询)

    复制代码
    -- 查询表达式
    

    SELECT *|field1,filed2 ... FROM tab_name
    WHERE 条件
    GROUP BY field
    HAVING 筛选
    ORDER BY field
    LIMIT 限制条数

    ---准备表

    CREATE TABLE ExamResult(

    id INT PRIMARY KEY auto_increment,
    name
    VARCHAR (20),
    JS
    DOUBLE ,
    Django
    DOUBLE ,
    OpenStack
    DOUBLE
    );

    INSERT INTO ExamResult VALUES (1,"yuan",98,98,98),
    (
    2,"xialv",35,98,67),
    (
    3,"alex",59,59,62),
    (
    4,"wusir",88,89,82),
    (
    5,"alvin",88,98,67),
    (
    6,"yuan",86,100,55);

    -- (1)select [distinct] |field1,field2,...... from tab_name
    -- 其中from指定从哪张表筛选,
    表示查找所有列,也可以指定一个列
    -- 表明确指定要查找的列,distinct用来剔除重复行。

                    <span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> 查询表中所有学生的信息。</span>
                    <span style="color: #0000ff;">select</span> <span style="color: #808080;">*</span> <span style="color: #0000ff;">from</span><span style="color: #000000;"> ExamResult;
                    </span><span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> 查询表中所有学生的姓名和对应的英语成绩。</span>
                    <span style="color: #0000ff;">select</span> name,JS <span style="color: #0000ff;">from</span><span style="color: #000000;"> ExamResult;
                    </span><span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> 过滤表中重复数据。</span>
                    <span style="color: #0000ff;">select</span> <span style="color: #0000ff;">distinct</span> JS ,name <span style="color: #0000ff;">from</span><span style="color: #000000;"> ExamResult;
    

    -- (2)select 也可以使用表达式,并且可以使用: 字段 as 别名或者:字段 别名

                <span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> 在所有学生分数上加10分特长分显示。</span>
    
                <span style="color: #0000ff;">select</span> name,JS<span style="color: #808080;">+</span><span style="color: #800000; font-weight: bold;">10</span>,Django<span style="color: #808080;">+</span><span style="color: #800000; font-weight: bold;">10</span>,OpenStack<span style="color: #808080;">+</span><span style="color: #800000; font-weight: bold;">10</span> <span style="color: #0000ff;">from</span><span style="color: #000000;"> ExamResult;
                </span><span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> 统计每个学生的总分。</span>
                <span style="color: #0000ff;">select</span> name,JS<span style="color: #808080;">+</span>Django<span style="color: #808080;">+</span>OpenStack <span style="color: #0000ff;">from</span><span style="color: #000000;"> ExamResult;
                </span><span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> 使用别名表示学生总分。</span>
                <span style="color: #0000ff;">select</span> name <span style="color: #0000ff;">as</span> 姓名,JS<span style="color: #808080;">+</span>Django<span style="color: #808080;">+</span>OpenStack <span style="color: #0000ff;">as</span> 总成绩 <span style="color: #0000ff;">from</span><span style="color: #000000;"> ExamResult;
                </span><span style="color: #0000ff;">select</span> name,JS<span style="color: #808080;">+</span>Django<span style="color: #808080;">+</span>OpenStack 总成绩 <span style="color: #0000ff;">from</span><span style="color: #000000;"> ExamResult;
    
                </span><span style="color: #0000ff;">select</span> name JS <span style="color: #0000ff;">from</span> ExamResult; <span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> what will happen?----&gt;记得加逗号</span>
    

    -- (3)使用where子句,进行过滤查询。

            <span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> 查询姓名为XXX的学生成绩</span>
            <span style="color: #0000ff;">select</span> <span style="color: #808080;">*</span> <span style="color: #0000ff;">from</span> ExamResult <span style="color: #0000ff;">where</span> name<span style="color: #808080;">=</span><span style="color: #ff0000;">'</span><span style="color: #ff0000;">yuan</span><span style="color: #ff0000;">'</span><span style="color: #000000;">;
            </span><span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> 查询英语成绩大于90分的同学</span>
            <span style="color: #0000ff;">select</span> id,name,JS <span style="color: #0000ff;">from</span> ExamResult <span style="color: #0000ff;">where</span> JS<span style="color: #808080;">&gt;</span><span style="color: #800000; font-weight: bold;">90</span><span style="color: #000000;">;
            </span><span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> 查询总分大于200分的所有同学</span>
            <span style="color: #0000ff;">select</span> name,JS<span style="color: #808080;">+</span>Django<span style="color: #808080;">+</span>OpenStack <span style="color: #0000ff;">as</span> 总成绩 <span style="color: #0000ff;">from</span><span style="color: #000000;">
                        ExamResult </span><span style="color: #0000ff;">where</span> JS<span style="color: #808080;">+</span>Django<span style="color: #808080;">+</span>OpenStack<span style="color: #808080;">&gt;</span><span style="color: #800000; font-weight: bold;">200</span><span style="color: #000000;"> ;
            </span><span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> where字句中可以使用:</span>
                     <span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> 比较运算符:</span>
                        <span style="color: #808080;">&gt;</span> <span style="color: #808080;">&lt;</span> <span style="color: #808080;">&gt;=</span> <span style="color: #808080;">&lt;=</span> <span style="color: #808080;">&lt;&gt;</span> <span style="color: #808080;">!=</span>
                        <span style="color: #808080;">between</span> <span style="color: #800000; font-weight: bold;">80</span> <span style="color: #808080;">and</span> <span style="color: #800000; font-weight: bold;">100</span><span style="color: #000000;"> 值在10到20之间
                        </span><span style="color: #808080;">in</span>(<span style="color: #800000; font-weight: bold;">80</span>,<span style="color: #800000; font-weight: bold;">90</span>,<span style="color: #800000; font-weight: bold;">100</span><span style="color: #000000;">) 值是10或20或30
                        </span><span style="color: #808080;">like</span> <span style="color: #ff0000;">'</span><span style="color: #ff0000;">yuan%</span><span style="color: #ff0000;">'</span>
                        <span style="color: #008080;user-select:none;">/*</span><span style="color: #008080;user-select:none;">
                        pattern可以是%或者_,
                        如果是%则表示任意多字符,此例如唐僧,唐国强
                        如果是_则表示一个字符唐_,只有唐僧符合。两个_则表示两个字符:__
                        </span><span style="color: #008080;user-select:none;">*/</span>
    
                    <span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> 逻辑运算符</span>
                        在多个条件直接可以使用逻辑运算符 <span style="color: #808080;">and</span> <span style="color: #808080;">or</span> <span style="color: #808080;">not</span>
            <span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> 练习</span>
                <span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> 查询JS分数在 70-100之间的同学。</span>
                <span style="color: #0000ff;">select</span> name ,JS <span style="color: #0000ff;">from</span> ExamResult <span style="color: #0000ff;">where</span> JS <span style="color: #808080;">between</span> <span style="color: #800000; font-weight: bold;">80</span> <span style="color: #808080;">and</span> <span style="color: #800000; font-weight: bold;">100</span><span style="color: #000000;">;
                </span><span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> 查询Django分数为75,76,77的同学。</span>
                <span style="color: #0000ff;">select</span> name ,Django <span style="color: #0000ff;">from</span> ExamResult <span style="color: #0000ff;">where</span> Django <span style="color: #808080;">in</span> (<span style="color: #800000; font-weight: bold;">75</span>,<span style="color: #800000; font-weight: bold;">98</span>,<span style="color: #800000; font-weight: bold;">77</span><span style="color: #000000;">);
                </span><span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> 查询所有姓王的学生成绩。</span>
                <span style="color: #0000ff;">select</span> <span style="color: #808080;">*</span> <span style="color: #0000ff;">from</span> ExamResult <span style="color: #0000ff;">where</span> name <span style="color: #808080;">like</span> <span style="color: #ff0000;">'</span><span style="color: #ff0000;">王%</span><span style="color: #ff0000;">'</span><span style="color: #000000;">;
                </span><span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> 查询JS分&gt;90,Django分&gt;90的同学。</span>
                <span style="color: #0000ff;">select</span> id,name <span style="color: #0000ff;">from</span> ExamResult <span style="color: #0000ff;">where</span> JS<span style="color: #808080;">&gt;</span><span style="color: #800000; font-weight: bold;">90</span> <span style="color: #808080;">and</span> Django <span style="color: #808080;">&gt;</span><span style="color: #800000; font-weight: bold;">90</span><span style="color: #000000;">;
                </span><span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> 查找缺考数学的学生的姓名</span>
                <span style="color: #0000ff;">select</span> name <span style="color: #0000ff;">from</span> ExamResult <span style="color: #0000ff;">where</span> <span style="color: #0000ff;">Database</span> <span style="color: #0000ff;">is</span> <span style="color: #0000ff;">null</span><span style="color: #000000;">;
    

    -- (4)Order by 指定排序的列,排序的列即可是表中的列名,也可以是select 语句后指定的别名。

              <span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> select *|field1,field2... from tab_name order by field [Asc|Desc]</span>
    
              <span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> Asc 升序、Desc 降序,其中asc为默认值 ORDER BY 子句应位于SELECT语句的结尾。</span>
              <span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> 练习:</span>
              <span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> 对JS成绩排序后输出。</span>
              <span style="color: #0000ff;">select</span> <span style="color: #808080;">*</span> <span style="color: #0000ff;">from</span> ExamResult <span style="color: #0000ff;">order</span> <span style="color: #0000ff;">by</span><span style="color: #000000;"> JS;
              </span><span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> 对总分排序按从高到低的顺序输出</span>
              <span style="color: #0000ff;">select</span> name ,(ifnull(JS,<span style="color: #800000; font-weight: bold;">0</span>)<span style="color: #808080;">+</span>ifnull(Django,<span style="color: #800000; font-weight: bold;">0</span>)<span style="color: #808080;">+</span>ifnull(<span style="color: #0000ff;">Database</span>,<span style="color: #800000; font-weight: bold;">0</span><span style="color: #000000;">))
                   总成绩 </span><span style="color: #0000ff;">from</span> ExamResult <span style="color: #0000ff;">order</span> <span style="color: #0000ff;">by</span> 总成绩 <span style="color: #0000ff;">desc</span><span style="color: #000000;">;
              </span><span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> 对姓李的学生成绩排序输出</span>
              <span style="color: #0000ff;">select</span> name ,(ifnull(JS,<span style="color: #800000; font-weight: bold;">0</span>)<span style="color: #808080;">+</span>ifnull(Django,<span style="color: #800000; font-weight: bold;">0</span>)<span style="color: #808080;">+</span>ifnull(OpenStack,<span style="color: #800000; font-weight: bold;">0</span><span style="color: #000000;">))
                   总成绩 </span><span style="color: #0000ff;">from</span> ExamResult <span style="color: #0000ff;">where</span> name <span style="color: #808080;">like</span> <span style="color: #ff0000;">'</span><span style="color: #ff0000;">a%</span><span style="color: #ff0000;">'</span>
                                         <span style="color: #0000ff;">order</span> <span style="color: #0000ff;">by</span> 总成绩 <span style="color: #0000ff;">desc</span><span style="color: #000000;">;
    

    -- (5)group by 分组查询:
    CREATE TABLE order_menu(
    id
    INT PRIMARY KEY auto_increment,
    product_name
    VARCHAR (20),
    price
    FLOAT(6,2),
    born_date DATE,
    class
    VARCHAR (20)
    );

         </span><span style="color: #0000ff;">INSERT</span> <span style="color: #0000ff;">INTO</span> order_menu (product_name,price,born_date,class) <span style="color: #0000ff;">VALUES</span><span style="color: #000000;">
                                             ("苹果",</span><span style="color: #800000; font-weight: bold;">20</span>,<span style="color: #800000; font-weight: bold;">20170612</span><span style="color: #000000;">,"水果"),
                                             ("香蕉",</span><span style="color: #800000; font-weight: bold;">80</span>,<span style="color: #800000; font-weight: bold;">20170602</span><span style="color: #000000;">,"水果"),
                                             ("水壶",</span><span style="color: #800000; font-weight: bold;">120</span>,<span style="color: #800000; font-weight: bold;">20170612</span><span style="color: #000000;">,"电器"),
                                             ("被罩",</span><span style="color: #800000; font-weight: bold;">70</span>,<span style="color: #800000; font-weight: bold;">20170612</span><span style="color: #000000;">,"床上用品"),
                                             ("音响",</span><span style="color: #800000; font-weight: bold;">420</span>,<span style="color: #800000; font-weight: bold;">20170612</span><span style="color: #000000;">,"电器"),
                                             ("床单",</span><span style="color: #800000; font-weight: bold;">55</span>,<span style="color: #800000; font-weight: bold;">20170612</span><span style="color: #000000;">,"床上用品"),
                                             ("草莓",</span><span style="color: #800000; font-weight: bold;">34</span>,<span style="color: #800000; font-weight: bold;">20170612</span><span style="color: #000000;">,"水果");
    
    
            </span><span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> 注意,按分组条件分组后每一组只会显示第一条记录</span>
    
            <span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> group by字句,其后可以接多个列名,也可以跟having子句,对group by 的结果进行筛选。</span>
    
    
                    <span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> 按位置字段筛选</span>
                       <span style="color: #0000ff;">select</span> <span style="color: #808080;">*</span> <span style="color: #0000ff;">from</span> order_menu <span style="color: #0000ff;">group</span> <span style="color: #0000ff;">by</span> <span style="color: #800000; font-weight: bold;">5</span><span style="color: #000000;">;
    
                    </span><span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> 练习:对购物表按类名分组后显示每一组商品的价格总和</span>
                       <span style="color: #0000ff;">select</span> class,<span style="color: #ff00ff;">SUM</span>(price)<span style="color: #0000ff;">from</span> order_menu <span style="color: #0000ff;">group</span> <span style="color: #0000ff;">by</span><span style="color: #000000;"> class;
    
                    </span><span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> 练习:对购物表按类名分组后显示每一组商品价格总和超过150的商品</span>
                       <span style="color: #0000ff;">select</span> class,<span style="color: #ff00ff;">SUM</span>(price)<span style="color: #0000ff;">from</span> order_menu <span style="color: #0000ff;">group</span> <span style="color: #0000ff;">by</span><span style="color: #000000;"> class
                                                        </span><span style="color: #0000ff;">HAVING</span> <span style="color: #ff00ff;">SUM</span>(price)<span style="color: #808080;">&gt;</span><span style="color: #800000; font-weight: bold;">150</span><span style="color: #000000;">;
    
    
    
                   </span><span style="color: #008080;user-select:none;">/*</span><span style="color: #008080;user-select:none;">
                   having 和 where两者都可以对查询结果进行进一步的过滤,差别有:
                     &lt;1&gt;where语句只能用在分组之前的筛选,having可以用在分组之后的筛选;
                     &lt;2&gt;使用where语句的地方都可以用having进行替换
                     &lt;3&gt;having中可以用聚合函数,where中就不行。
                   </span><span style="color: #008080;user-select:none;">*/</span>
    
    
            <span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> GROUP_CONCAT() 函数</span>
            <span style="color: #0000ff;">SELECT</span> id,GROUP_CONCAT(name),GROUP_CONCAT(JS) <span style="color: #0000ff;">from</span> ExamResult <span style="color: #0000ff;">GROUP</span> <span style="color: #0000ff;">BY</span><span style="color: #000000;"> id;
    

    -- (6)聚合函数: 先不要管聚合函数要干嘛,先把要求的内容查出来再包上聚合函数即可。
    -- (一般和分组查询配合使用)

        <span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;">&lt;1&gt; 统计表中所有记录</span>
    
            <span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> COUNT(列名):统计行的个数</span>
                    <span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> 统计一个班级共有多少学生?先查出所有的学生,再用count包上</span>
                     <span style="color: #0000ff;">select</span> <span style="color: #ff00ff;">count</span>(<span style="color: #808080;">*</span>) <span style="color: #0000ff;">from</span><span style="color: #000000;"> ExamResult;
                    </span><span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> 统计JS成绩大于70的学生有多少个?</span>
                     <span style="color: #0000ff;">select</span> <span style="color: #ff00ff;">count</span>(JS) <span style="color: #0000ff;">from</span> ExamResult <span style="color: #0000ff;">where</span> JS<span style="color: #808080;">&gt;</span><span style="color: #800000; font-weight: bold;">70</span><span style="color: #000000;">;
                    </span><span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> 统计总分大于280的人数有多少?</span>
                     <span style="color: #0000ff;">select</span> <span style="color: #ff00ff;">count</span>(name) <span style="color: #0000ff;">from</span><span style="color: #000000;"> ExamResult
                           </span><span style="color: #0000ff;">where</span> (ifnull(JS,<span style="color: #800000; font-weight: bold;">0</span>)<span style="color: #808080;">+</span>ifnull(Django,<span style="color: #800000; font-weight: bold;">0</span>)<span style="color: #808080;">+</span>ifnull(OpenStack,<span style="color: #800000; font-weight: bold;">0</span>))<span style="color: #808080;">&gt;</span><span style="color: #800000; font-weight: bold;">280</span><span style="color: #000000;">;
                    </span><span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> 注意:count(*)统计所有行;     count(字段)不统计null值.</span>
    
            <span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> SUM(列名):统计满足条件的行的内容和</span>
                    <span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> 统计一个班级JS总成绩?先查出所有的JS成绩,再用sum包上</span>
                        <span style="color: #0000ff;">select</span> JS <span style="color: #0000ff;">as</span> JS总成绩 <span style="color: #0000ff;">from</span><span style="color: #000000;"> ExamResult;
                        </span><span style="color: #0000ff;">select</span> <span style="color: #ff00ff;">sum</span>(JS) <span style="color: #0000ff;">as</span> JS总成绩 <span style="color: #0000ff;">from</span><span style="color: #000000;"> ExamResult;
                    </span><span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> 统计一个班级各科分别的总成绩</span>
                        <span style="color: #0000ff;">select</span> <span style="color: #ff00ff;">sum</span>(JS) <span style="color: #0000ff;">as</span><span style="color: #000000;"> JS总成绩,
                               </span><span style="color: #ff00ff;">sum</span>(Django) <span style="color: #0000ff;">as</span><span style="color: #000000;"> Django总成绩,
                               </span><span style="color: #ff00ff;">sum</span>(OpenStack) <span style="color: #0000ff;">as</span> OpenStack <span style="color: #0000ff;">from</span><span style="color: #000000;"> ExamResult;
    
                    </span><span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> 统计一个班级各科的成绩总和</span>
                        <span style="color: #0000ff;">select</span> <span style="color: #ff00ff;">sum</span>(ifnull(JS,<span style="color: #800000; font-weight: bold;">0</span>)<span style="color: #808080;">+</span>ifnull(Django,<span style="color: #800000; font-weight: bold;">0</span>)<span style="color: #808080;">+</span>ifnull(<span style="color: #0000ff;">Database</span>,<span style="color: #800000; font-weight: bold;">0</span><span style="color: #000000;">))
                                                    </span><span style="color: #0000ff;">as</span> 总成绩 <span style="color: #0000ff;">from</span><span style="color: #000000;"> ExamResult;
                    </span><span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> 统计一个班级JS成绩平均分</span>
                        <span style="color: #0000ff;">select</span> <span style="color: #ff00ff;">sum</span>(JS)<span style="color: #808080;">/</span><span style="color: #ff00ff;">count</span>(<span style="color: #808080;">*</span>) <span style="color: #0000ff;">from</span><span style="color: #000000;"> ExamResult ;
                    </span><span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> 注意:sum仅对数值起作用,否则会报错。</span>
    
            <span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> AVG(列名):</span>
                            <span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> 求一个班级JS平均分?先查出所有的JS分,然后用avg包上。</span>
                                <span style="color: #0000ff;">select</span> <span style="color: #ff00ff;">avg</span>(ifnull(JS,<span style="color: #800000; font-weight: bold;">0</span>)) <span style="color: #0000ff;">from</span><span style="color: #000000;"> ExamResult;
                            </span><span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> 求一个班级总分平均分</span>
                                <span style="color: #0000ff;">select</span> <span style="color: #ff00ff;">avg</span>((ifnull(JS,<span style="color: #800000; font-weight: bold;">0</span>)<span style="color: #808080;">+</span>ifnull(Django,<span style="color: #800000; font-weight: bold;">0</span>)<span style="color: #808080;">+</span>ifnull(<span style="color: #0000ff;">Database</span>,<span style="color: #800000; font-weight: bold;">0</span><span style="color: #000000;">)))
                                                         </span><span style="color: #0000ff;">from</span><span style="color: #000000;"> ExamResult ;
            </span><span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> Max、Min</span>
                            <span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> 求班级最高分和最低分(数值范围在统计中特别有用)</span>
                              <span style="color: #0000ff;">select</span> <span style="color: #ff00ff;">Max</span>((ifnull(JS,<span style="color: #800000; font-weight: bold;">0</span>)<span style="color: #808080;">+</span>ifnull(Django,<span style="color: #800000; font-weight: bold;">0</span>)<span style="color: #808080;">+</span>ifnull(OpenStack,<span style="color: #800000; font-weight: bold;">0</span><span style="color: #000000;">)))
                              最高分 </span><span style="color: #0000ff;">from</span><span style="color: #000000;"> ExamResult;
                              </span><span style="color: #0000ff;">select</span> <span style="color: #ff00ff;">Min</span>((ifnull(JS,<span style="color: #800000; font-weight: bold;">0</span>)<span style="color: #808080;">+</span>ifnull(Django,<span style="color: #800000; font-weight: bold;">0</span>)<span style="color: #808080;">+</span>ifnull(OpenStack,<span style="color: #800000; font-weight: bold;">0</span><span style="color: #000000;">)))
                              最低分 </span><span style="color: #0000ff;">from</span><span style="color: #000000;"> ExamResult;
                            </span><span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> 求购物表中单价最高的商品名称及价格</span>
                              <span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;">-SELECT id, MAX(price) FROM order_menu;--id和最高价商品是一个商品吗?</span>
                              
                              <span style="color: #0000ff;">SELECT</span> <span style="color: #ff00ff;">MAX</span>(price) <span style="color: #0000ff;">FROM</span><span style="color: #000000;"> order_menu; 
    
                            </span><span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> 注意:null 和所有的数计算都是null,所以需要用ifnull将null转换为0!</span>
                            <span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;">      -----ifnull(JS,0)</span>
    
    
                <span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> with rollup的使用</span>
    
            <span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;">&lt;2&gt; 统计分组后的组记录</span>
    

    -- (7) 重点:Select from where group by having order by
    -- Mysql在执行sql语句时的执行顺序:
    -- from where select group by having order by
    -- 分析:
    select JS as JS成绩 from ExamResult where JS成绩 >70; ---- 不成功
    select JS as JS成绩 from ExamResult having JS成绩 >90; --- 成功

    -- (8) limit
    SELECT from ExamResult limit 1;
    SELECT
    from ExamResult limit 2,5;--跳过前两条显示接下来的五条纪录
    SELECT * from ExamResult limit 2,2;

    --- (9) 使用正则表达式查询
    SELECT * FROM employee WHERE emp_name REGEXP '^yu';

        </span><span style="color: #0000ff;">SELECT</span> <span style="color: #808080;">*</span> <span style="color: #0000ff;">FROM</span> employee <span style="color: #0000ff;">WHERE</span> emp_name REGEXP <span style="color: #ff0000;">'</span><span style="color: #ff0000;">yun$</span><span style="color: #ff0000;">'</span><span style="color: #000000;">;
    
        </span><span style="color: #0000ff;">SELECT</span> <span style="color: #808080;">*</span> <span style="color: #0000ff;">FROM</span> employee <span style="color: #0000ff;">WHERE</span> emp_name REGEXP <span style="color: #ff0000;">'</span><span style="color: #ff0000;">m{2}</span><span style="color: #ff0000;">'</span>;</pre>
    
    复制代码

    外键约束

    创建外键

    复制代码
    ---  每一个班主任会对应多个学生 , 而每个学生只能对应一个班主任
    

    ----主表

    CREATE TABLE ClassCharger(

       id </span><span style="color: #0000ff;">TINYINT</span> <span style="color: #0000ff;">PRIMARY</span> <span style="color: #0000ff;">KEY</span><span style="color: #000000;"> auto_increment,
       name </span><span style="color: #0000ff;">VARCHAR</span> (<span style="color: #800000; font-weight: bold;">20</span><span style="color: #000000;">),
       age </span><span style="color: #0000ff;">INT</span><span style="color: #000000;"> ,
       is_marriged boolean  </span><span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> show create table ClassCharger: tinyint(1)</span>
    
    );

    INSERT INTO ClassCharger (name,age,is_marriged) VALUES ("冰冰",12,0),
    ("丹丹",
    14,0),
    ("歪歪",
    22,0),
    ("姗姗",
    20,0),
    ("小雨",
    21,0);

    ----子表

    CREATE TABLE Student(

       id </span><span style="color: #0000ff;">INT</span> <span style="color: #0000ff;">PRIMARY</span> <span style="color: #0000ff;">KEY</span><span style="color: #000000;"> auto_increment,
       name </span><span style="color: #0000ff;">VARCHAR</span> (<span style="color: #800000; font-weight: bold;">20</span><span style="color: #000000;">),
       charger_id </span><span style="color: #0000ff;">TINYINT</span>,     <span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;">切记:作为外键一定要和关联主键的数据类型保持一致</span>
       <span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> [ADD CONSTRAINT charger_fk_stu]FOREIGN KEY (charger_id) REFERENCES ClassCharger(id)</span>
    
    ) ENGINE=INNODB;

    INSERT INTO Student(name,charger_id) VALUES ("alvin1",2),
    ("alvin2",
    4),
    ("alvin3",
    1),
    ("alvin4",
    3),
    ("alvin5",
    1),
    ("alvin6",
    3),
    ("alvin7",
    2);

    DELETE FROM ClassCharger WHERE name="冰冰";
    INSERT student (name,charger_id) VALUES ("yuan",1);
    -- 删除居然成功,可是 alvin3显示还是有班主任id=1的冰冰的;

    -----------增加外键和删除外键---------

    ALTER TABLE student ADD CONSTRAINT abc
    FOREIGN KEY(charger_id)
    REFERENCES classcharger(id);

    ALTER TABLE student DROP FOREIGN KEY abc;

    复制代码

     INNODB支持的ON语句

    复制代码
    --外键约束对子表的含义:   如果在父表中找不到候选键,则不允许在子表上进行insert/update
    

    --外键约束对父表的含义: 在父表上进行update/delete以更新或删除在子表中有一条或多条对
    -- 应匹配行的候选键时,父表的行为取决于:在定义子表的外键时指定的
    -- on update/on delete子句

    -----------------innodb支持的四种方式---------------------------------------

    -----cascade方式 在父表上update/delete记录时,同步update/delete掉子表的匹配记录
    --
    ---外键的级联删除:如果父表中的记录被删除,则子表中对应的记录自动被删除--------

     <span style="color: #0000ff;">FOREIGN</span> <span style="color: #0000ff;">KEY</span> (charger_id) <span style="color: #0000ff;">REFERENCES</span><span style="color: #000000;"> ClassCharger(id)
                              </span><span style="color: #0000ff;">ON</span> <span style="color: #0000ff;">DELETE</span> <span style="color: #0000ff;">CASCADE</span>
    

    ------set null方式 在父表上update/delete记录时,将子表上匹配记录的列设为null
    -- 要注意子表的外键列不能为not null

     <span style="color: #0000ff;">FOREIGN</span> <span style="color: #0000ff;">KEY</span> (charger_id) <span style="color: #0000ff;">REFERENCES</span><span style="color: #000000;"> ClassCharger(id)
                              </span><span style="color: #0000ff;">ON</span> <span style="color: #0000ff;">DELETE</span> <span style="color: #0000ff;">SET</span> <span style="color: #0000ff;">NULL</span>
    

    ------Restrict方式 :拒绝对父表进行删除更新操作(了解)

    ------No action方式 在mysql中同Restrict,如果子表中有匹配的记录,则不允许对父表对应候选键
    -- 进行update/delete操作(了解)

    复制代码

    多表查询

    准备表

    复制代码
    -- 准备两张表
    -- company.employee
    -- company.department
    
      <span style="color: #0000ff;">create</span> <span style="color: #0000ff;">table</span><span style="color: #000000;"> employee(
      emp_id </span><span style="color: #0000ff;">int</span> auto_increment <span style="color: #0000ff;">primary</span> <span style="color: #0000ff;">key</span> <span style="color: #808080;">not</span> <span style="color: #0000ff;">null</span><span style="color: #000000;">,
      emp_name </span><span style="color: #0000ff;">varchar</span>(<span style="color: #800000; font-weight: bold;">50</span><span style="color: #000000;">),
      age </span><span style="color: #0000ff;">int</span><span style="color: #000000;">,
      dept_id </span><span style="color: #0000ff;">int</span><span style="color: #000000;">
      );
    
      </span><span style="color: #0000ff;">insert</span> <span style="color: #0000ff;">into</span> employee(emp_name,age,dept_id) <span style="color: #0000ff;">values</span><span style="color: #000000;">
        (</span><span style="color: #ff0000;">'</span><span style="color: #ff0000;">A</span><span style="color: #ff0000;">'</span>,<span style="color: #800000; font-weight: bold;">19</span>,<span style="color: #800000; font-weight: bold;">200</span><span style="color: #000000;">),
        (</span><span style="color: #ff0000;">'</span><span style="color: #ff0000;">B</span><span style="color: #ff0000;">'</span>,<span style="color: #800000; font-weight: bold;">26</span>,<span style="color: #800000; font-weight: bold;">201</span><span style="color: #000000;">),
        (</span><span style="color: #ff0000;">'</span><span style="color: #ff0000;">C</span><span style="color: #ff0000;">'</span>,<span style="color: #800000; font-weight: bold;">30</span>,<span style="color: #800000; font-weight: bold;">201</span><span style="color: #000000;">),
        (</span><span style="color: #ff0000;">'</span><span style="color: #ff0000;">D</span><span style="color: #ff0000;">'</span>,<span style="color: #800000; font-weight: bold;">24</span>,<span style="color: #800000; font-weight: bold;">202</span><span style="color: #000000;">),
        (</span><span style="color: #ff0000;">'</span><span style="color: #ff0000;">E</span><span style="color: #ff0000;">'</span>,<span style="color: #800000; font-weight: bold;">20</span>,<span style="color: #800000; font-weight: bold;">200</span><span style="color: #000000;">),
        (</span><span style="color: #ff0000;">'</span><span style="color: #ff0000;">F</span><span style="color: #ff0000;">'</span>,<span style="color: #800000; font-weight: bold;">38</span>,<span style="color: #800000; font-weight: bold;">204</span><span style="color: #000000;">);
    
    
    </span><span style="color: #0000ff;">create</span> <span style="color: #0000ff;">table</span><span style="color: #000000;"> department(
       dept_id </span><span style="color: #0000ff;">int</span><span style="color: #000000;">,
       dept_name </span><span style="color: #0000ff;">varchar</span>(<span style="color: #800000; font-weight: bold;">100</span><span style="color: #000000;">)
      );
    
    </span><span style="color: #0000ff;">insert</span> <span style="color: #0000ff;">into</span> department <span style="color: #0000ff;">values</span><span style="color: #000000;">
      (</span><span style="color: #800000; font-weight: bold;">200</span>,<span style="color: #ff0000;">'</span><span style="color: #ff0000;">人事部</span><span style="color: #ff0000;">'</span><span style="color: #000000;">),
      (</span><span style="color: #800000; font-weight: bold;">201</span>,<span style="color: #ff0000;">'</span><span style="color: #ff0000;">技术部</span><span style="color: #ff0000;">'</span><span style="color: #000000;">),
      (</span><span style="color: #800000; font-weight: bold;">202</span>,<span style="color: #ff0000;">'</span><span style="color: #ff0000;">销售部</span><span style="color: #ff0000;">'</span><span style="color: #000000;">),
      (</span><span style="color: #800000; font-weight: bold;">203</span>,<span style="color: #ff0000;">'</span><span style="color: #ff0000;">财政部</span><span style="color: #ff0000;">'</span><span style="color: #000000;">);
    

    mysql> select * from employee;
    +--------+----------+------+---------+
    | emp_id | emp_name | age | dept_id |
    +--------+----------+------+---------+
    | 1 | A | 19 | 200 |
    | 2 | B | 26 | 201 |
    | 3 | C | 30 | 201 |
    | 4 | D | 24 | 202 |
    | 5 | E | 20 | 200 |
    | 6 | F | 38 | 204 |
    +--------+----------+------+---------+
    6 rows in set (0.00 sec)

    mysql> select * from department;
    +---------+-----------+
    | dept_id | dept_name |
    +---------+-----------+
    | 200 | 人事部 |
    | 201 | 技术部 |
    | 202 | 销售部 |
    | 203 | 财政部 |
    +---------+-----------+
    4 rows in set (0.01 sec)

    复制代码

    多表查询之连接查询

    1.笛卡尔积查询

    复制代码
    mysql> SELECT * FROM employee,department;
    

    -- select employee.emp_id,employee.emp_name,employee.age,
    --
    department.dept_name from employee,department;

    +--------+----------+------+---------+---------+-----------+
    | emp_id | emp_name | age | dept_id | dept_id | dept_name |
    +--------+----------+------+---------+---------+-----------+
    | 1 | A | 19 | 200 | 200 | 人事部 |
    | 1 | A | 19 | 200 | 201 | 技术部 |
    | 1 | A | 19 | 200 | 202 | 销售部 |
    | 1 | A | 19 | 200 | 203 | 财政部 |
    | 2 | B | 26 | 201 | 200 | 人事部 |
    | 2 | B | 26 | 201 | 201 | 技术部 |
    | 2 | B | 26 | 201 | 202 | 销售部 |
    | 2 | B | 26 | 201 | 203 | 财政部 |
    | 3 | C | 30 | 201 | 200 | 人事部 |
    | 3 | C | 30 | 201 | 201 | 技术部 |
    | 3 | C | 30 | 201 | 202 | 销售部 |
    | 3 | C | 30 | 201 | 203 | 财政部 |
    | 4 | D | 24 | 202 | 200 | 人事部 |
    | 4 | D | 24 | 202 | 201 | 技术部 |
    | 4 | D | 24 | 202 | 202 | 销售部 |
    | 4 | D | 24 | 202 | 203 | 财政部 |
    | 5 | E | 20 | 200 | 200 | 人事部 |
    | 5 | E | 20 | 200 | 201 | 技术部 |
    | 5 | E | 20 | 200 | 202 | 销售部 |
    | 5 | E | 20 | 200 | 203 | 财政部 |
    | 6 | F | 38 | 204 | 200 | 人事部 |
    | 6 | F | 38 | 204 | 201 | 技术部 |
    | 6 | F | 38 | 204 | 202 | 销售部 |
    | 6 | F | 38 | 204 | 203 | 财政部 |
    +--------+----------+------+---------+---------+-----------+

    复制代码

    2.内连接

    复制代码
    -- 查询两张表中都有的关联数据,相当于利用条件从笛卡尔积结果中筛选出了正确的结果。
    

    select * from employee,department where employee.dept_id = department.dept_id;
    --select * from employee inner join department on employee.dept_id = department.dept_id;

      <span style="color: #808080;">+</span><span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;">------+----------+------+---------+---------+-----------+</span>
      <span style="color: #808080;">|</span> emp_id <span style="color: #808080;">|</span> emp_name <span style="color: #808080;">|</span> age  <span style="color: #808080;">|</span> dept_id <span style="color: #808080;">|</span> dept_id <span style="color: #808080;">|</span> dept_name <span style="color: #808080;">|</span>
      <span style="color: #808080;">+</span><span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;">------+----------+------+---------+---------+-----------+</span>
      <span style="color: #808080;">|</span>      <span style="color: #800000; font-weight: bold;">1</span> <span style="color: #808080;">|</span> A        <span style="color: #808080;">|</span>   <span style="color: #800000; font-weight: bold;">19</span> <span style="color: #808080;">|</span>     <span style="color: #800000; font-weight: bold;">200</span> <span style="color: #808080;">|</span>     <span style="color: #800000; font-weight: bold;">200</span> <span style="color: #808080;">|</span> 人事部    <span style="color: #808080;">|</span>
      <span style="color: #808080;">|</span>      <span style="color: #800000; font-weight: bold;">2</span> <span style="color: #808080;">|</span> B        <span style="color: #808080;">|</span>   <span style="color: #800000; font-weight: bold;">26</span> <span style="color: #808080;">|</span>     <span style="color: #800000; font-weight: bold;">201</span> <span style="color: #808080;">|</span>     <span style="color: #800000; font-weight: bold;">201</span> <span style="color: #808080;">|</span> 技术部    <span style="color: #808080;">|</span>
      <span style="color: #808080;">|</span>      <span style="color: #800000; font-weight: bold;">3</span> <span style="color: #808080;">|</span> C        <span style="color: #808080;">|</span>   <span style="color: #800000; font-weight: bold;">30</span> <span style="color: #808080;">|</span>     <span style="color: #800000; font-weight: bold;">201</span> <span style="color: #808080;">|</span>     <span style="color: #800000; font-weight: bold;">201</span> <span style="color: #808080;">|</span> 技术部    <span style="color: #808080;">|</span>
      <span style="color: #808080;">|</span>      <span style="color: #800000; font-weight: bold;">4</span> <span style="color: #808080;">|</span> D        <span style="color: #808080;">|</span>   <span style="color: #800000; font-weight: bold;">24</span> <span style="color: #808080;">|</span>     <span style="color: #800000; font-weight: bold;">202</span> <span style="color: #808080;">|</span>     <span style="color: #800000; font-weight: bold;">202</span> <span style="color: #808080;">|</span> 销售部    <span style="color: #808080;">|</span>
      <span style="color: #808080;">|</span>      <span style="color: #800000; font-weight: bold;">5</span> <span style="color: #808080;">|</span> E        <span style="color: #808080;">|</span>   <span style="color: #800000; font-weight: bold;">20</span> <span style="color: #808080;">|</span>     <span style="color: #800000; font-weight: bold;">200</span> <span style="color: #808080;">|</span>     <span style="color: #800000; font-weight: bold;">200</span> <span style="color: #808080;">|</span> 人事部    <span style="color: #808080;">|</span>
      <span style="color: #808080;">+</span><span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;">------+----------+------+---------+---------+-----------+</span></pre>
    
    复制代码

    3.外连接

    复制代码
    --(1)左外连接:在内连接的基础上增加左边有右边没有的结果
    

    select * from employee left join department on employee.dept_id = department.dept_id;

     </span><span style="color: #808080;">+</span><span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;">------+----------+------+---------+---------+-----------+</span>
    <span style="color: #808080;">|</span> emp_id <span style="color: #808080;">|</span> emp_name <span style="color: #808080;">|</span> age  <span style="color: #808080;">|</span> dept_id <span style="color: #808080;">|</span> dept_id <span style="color: #808080;">|</span> dept_name <span style="color: #808080;">|</span>
    <span style="color: #808080;">+</span><span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;">------+----------+------+---------+---------+-----------+</span>
    <span style="color: #808080;">|</span>      <span style="color: #800000; font-weight: bold;">1</span> <span style="color: #808080;">|</span> A        <span style="color: #808080;">|</span>   <span style="color: #800000; font-weight: bold;">19</span> <span style="color: #808080;">|</span>     <span style="color: #800000; font-weight: bold;">200</span> <span style="color: #808080;">|</span>     <span style="color: #800000; font-weight: bold;">200</span> <span style="color: #808080;">|</span> 人事部    <span style="color: #808080;">|</span>
    <span style="color: #808080;">|</span>      <span style="color: #800000; font-weight: bold;">5</span> <span style="color: #808080;">|</span> E        <span style="color: #808080;">|</span>   <span style="color: #800000; font-weight: bold;">20</span> <span style="color: #808080;">|</span>     <span style="color: #800000; font-weight: bold;">200</span> <span style="color: #808080;">|</span>     <span style="color: #800000; font-weight: bold;">200</span> <span style="color: #808080;">|</span> 人事部    <span style="color: #808080;">|</span>
    <span style="color: #808080;">|</span>      <span style="color: #800000; font-weight: bold;">2</span> <span style="color: #808080;">|</span> B        <span style="color: #808080;">|</span>   <span style="color: #800000; font-weight: bold;">26</span> <span style="color: #808080;">|</span>     <span style="color: #800000; font-weight: bold;">201</span> <span style="color: #808080;">|</span>     <span style="color: #800000; font-weight: bold;">201</span> <span style="color: #808080;">|</span> 技术部    <span style="color: #808080;">|</span>
    <span style="color: #808080;">|</span>      <span style="color: #800000; font-weight: bold;">3</span> <span style="color: #808080;">|</span> C        <span style="color: #808080;">|</span>   <span style="color: #800000; font-weight: bold;">30</span> <span style="color: #808080;">|</span>     <span style="color: #800000; font-weight: bold;">201</span> <span style="color: #808080;">|</span>     <span style="color: #800000; font-weight: bold;">201</span> <span style="color: #808080;">|</span> 技术部    <span style="color: #808080;">|</span>
    <span style="color: #808080;">|</span>      <span style="color: #800000; font-weight: bold;">4</span> <span style="color: #808080;">|</span> D        <span style="color: #808080;">|</span>   <span style="color: #800000; font-weight: bold;">24</span> <span style="color: #808080;">|</span>     <span style="color: #800000; font-weight: bold;">202</span> <span style="color: #808080;">|</span>     <span style="color: #800000; font-weight: bold;">202</span> <span style="color: #808080;">|</span> 销售部    <span style="color: #808080;">|</span>
    <span style="color: #808080;">|</span>      <span style="color: #800000; font-weight: bold;">6</span> <span style="color: #808080;">|</span> F        <span style="color: #808080;">|</span>   <span style="color: #800000; font-weight: bold;">38</span> <span style="color: #808080;">|</span>     <span style="color: #800000; font-weight: bold;">204</span> <span style="color: #808080;">|</span>    <span style="color: #0000ff;">NULL</span> <span style="color: #808080;">|</span> <span style="color: #0000ff;">NULL</span>      <span style="color: #808080;">|</span>
    <span style="color: #808080;">+</span><span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;">------+----------+------+---------+---------+-----------+</span>
    

    --(2)右外连接:在内连接的基础上增加右边有左边没有的结果

    select * from employee RIGHT JOIN department on employee.dept_id = department.dept_id;

        </span><span style="color: #808080;">+</span><span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;">------+----------+------+---------+---------+-----------+</span>
        <span style="color: #808080;">|</span> emp_id <span style="color: #808080;">|</span> emp_name <span style="color: #808080;">|</span> age  <span style="color: #808080;">|</span> dept_id <span style="color: #808080;">|</span> dept_id <span style="color: #808080;">|</span> dept_name <span style="color: #808080;">|</span>
        <span style="color: #808080;">+</span><span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;">------+----------+------+---------+---------+-----------+</span>
        <span style="color: #808080;">|</span>      <span style="color: #800000; font-weight: bold;">1</span> <span style="color: #808080;">|</span> A        <span style="color: #808080;">|</span>   <span style="color: #800000; font-weight: bold;">19</span> <span style="color: #808080;">|</span>     <span style="color: #800000; font-weight: bold;">200</span> <span style="color: #808080;">|</span>     <span style="color: #800000; font-weight: bold;">200</span> <span style="color: #808080;">|</span> 人事部    <span style="color: #808080;">|</span>
        <span style="color: #808080;">|</span>      <span style="color: #800000; font-weight: bold;">2</span> <span style="color: #808080;">|</span> B        <span style="color: #808080;">|</span>   <span style="color: #800000; font-weight: bold;">26</span> <span style="color: #808080;">|</span>     <span style="color: #800000; font-weight: bold;">201</span> <span style="color: #808080;">|</span>     <span style="color: #800000; font-weight: bold;">201</span> <span style="color: #808080;">|</span> 技术部    <span style="color: #808080;">|</span>
        <span style="color: #808080;">|</span>      <span style="color: #800000; font-weight: bold;">3</span> <span style="color: #808080;">|</span> C        <span style="color: #808080;">|</span>   <span style="color: #800000; font-weight: bold;">30</span> <span style="color: #808080;">|</span>     <span style="color: #800000; font-weight: bold;">201</span> <span style="color: #808080;">|</span>     <span style="color: #800000; font-weight: bold;">201</span> <span style="color: #808080;">|</span> 技术部    <span style="color: #808080;">|</span>
        <span style="color: #808080;">|</span>      <span style="color: #800000; font-weight: bold;">4</span> <span style="color: #808080;">|</span> D        <span style="color: #808080;">|</span>   <span style="color: #800000; font-weight: bold;">24</span> <span style="color: #808080;">|</span>     <span style="color: #800000; font-weight: bold;">202</span> <span style="color: #808080;">|</span>     <span style="color: #800000; font-weight: bold;">202</span> <span style="color: #808080;">|</span> 销售部    <span style="color: #808080;">|</span>
        <span style="color: #808080;">|</span>      <span style="color: #800000; font-weight: bold;">5</span> <span style="color: #808080;">|</span> E        <span style="color: #808080;">|</span>   <span style="color: #800000; font-weight: bold;">20</span> <span style="color: #808080;">|</span>     <span style="color: #800000; font-weight: bold;">200</span> <span style="color: #808080;">|</span>     <span style="color: #800000; font-weight: bold;">200</span> <span style="color: #808080;">|</span> 人事部    <span style="color: #808080;">|</span>
        <span style="color: #808080;">|</span>   <span style="color: #0000ff;">NULL</span> <span style="color: #808080;">|</span> <span style="color: #0000ff;">NULL</span>     <span style="color: #808080;">|</span> <span style="color: #0000ff;">NULL</span> <span style="color: #808080;">|</span>    <span style="color: #0000ff;">NULL</span> <span style="color: #808080;">|</span>     <span style="color: #800000; font-weight: bold;">203</span> <span style="color: #808080;">|</span> 财政部    <span style="color: #808080;">|</span>
        <span style="color: #808080;">+</span><span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;">------+----------+------+---------+---------+-----------+</span>
    

    --(3)全外连接:在内连接的基础上增加左边有右边没有的和右边有左边没有的结果

    <span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> mysql不支持全外连接 full JOIN</span>
    <span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> mysql可以使用此种方式间接实现全外连接</span>
    

    select from employee RIGHT JOIN department on employee.dept_id = department.dept_id
    UNION
    select
    from employee LEFT JOIN department on employee.dept_id = department.dept_id;

        </span><span style="color: #808080;">+</span><span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;">------+----------+------+---------+---------+-----------+</span>
        <span style="color: #808080;">|</span> emp_id <span style="color: #808080;">|</span> emp_name <span style="color: #808080;">|</span> age  <span style="color: #808080;">|</span> dept_id <span style="color: #808080;">|</span> dept_id <span style="color: #808080;">|</span> dept_name <span style="color: #808080;">|</span>
        <span style="color: #808080;">+</span><span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;">------+----------+------+---------+---------+-----------+</span>
        <span style="color: #808080;">|</span>      <span style="color: #800000; font-weight: bold;">1</span> <span style="color: #808080;">|</span> A        <span style="color: #808080;">|</span>   <span style="color: #800000; font-weight: bold;">19</span> <span style="color: #808080;">|</span>     <span style="color: #800000; font-weight: bold;">200</span> <span style="color: #808080;">|</span>     <span style="color: #800000; font-weight: bold;">200</span> <span style="color: #808080;">|</span> 人事部    <span style="color: #808080;">|</span>
        <span style="color: #808080;">|</span>      <span style="color: #800000; font-weight: bold;">2</span> <span style="color: #808080;">|</span> B        <span style="color: #808080;">|</span>   <span style="color: #800000; font-weight: bold;">26</span> <span style="color: #808080;">|</span>     <span style="color: #800000; font-weight: bold;">201</span> <span style="color: #808080;">|</span>     <span style="color: #800000; font-weight: bold;">201</span> <span style="color: #808080;">|</span> 技术部    <span style="color: #808080;">|</span>
        <span style="color: #808080;">|</span>      <span style="color: #800000; font-weight: bold;">3</span> <span style="color: #808080;">|</span> C        <span style="color: #808080;">|</span>   <span style="color: #800000; font-weight: bold;">30</span> <span style="color: #808080;">|</span>     <span style="color: #800000; font-weight: bold;">201</span> <span style="color: #808080;">|</span>     <span style="color: #800000; font-weight: bold;">201</span> <span style="color: #808080;">|</span> 技术部    <span style="color: #808080;">|</span>
        <span style="color: #808080;">|</span>      <span style="color: #800000; font-weight: bold;">4</span> <span style="color: #808080;">|</span> D        <span style="color: #808080;">|</span>   <span style="color: #800000; font-weight: bold;">24</span> <span style="color: #808080;">|</span>     <span style="color: #800000; font-weight: bold;">202</span> <span style="color: #808080;">|</span>     <span style="color: #800000; font-weight: bold;">202</span> <span style="color: #808080;">|</span> 销售部    <span style="color: #808080;">|</span>
        <span style="color: #808080;">|</span>      <span style="color: #800000; font-weight: bold;">5</span> <span style="color: #808080;">|</span> E        <span style="color: #808080;">|</span>   <span style="color: #800000; font-weight: bold;">20</span> <span style="color: #808080;">|</span>     <span style="color: #800000; font-weight: bold;">200</span> <span style="color: #808080;">|</span>     <span style="color: #800000; font-weight: bold;">200</span> <span style="color: #808080;">|</span> 人事部    <span style="color: #808080;">|</span>
        <span style="color: #808080;">|</span>   <span style="color: #0000ff;">NULL</span> <span style="color: #808080;">|</span> <span style="color: #0000ff;">NULL</span>     <span style="color: #808080;">|</span> <span style="color: #0000ff;">NULL</span> <span style="color: #808080;">|</span>    <span style="color: #0000ff;">NULL</span> <span style="color: #808080;">|</span>     <span style="color: #800000; font-weight: bold;">203</span> <span style="color: #808080;">|</span> 财政部    <span style="color: #808080;">|</span>
        <span style="color: #808080;">|</span>      <span style="color: #800000; font-weight: bold;">6</span> <span style="color: #808080;">|</span> F        <span style="color: #808080;">|</span>   <span style="color: #800000; font-weight: bold;">38</span> <span style="color: #808080;">|</span>     <span style="color: #800000; font-weight: bold;">204</span> <span style="color: #808080;">|</span>    <span style="color: #0000ff;">NULL</span> <span style="color: #808080;">|</span> <span style="color: #0000ff;">NULL</span>      <span style="color: #808080;">|</span>
        <span style="color: #808080;">+</span><span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;">------+----------+------+---------+---------+-----------+</span>
    
      <span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> 注意 union与union all的区别:union会去掉相同的纪录</span></pre>
    
    复制代码

    多表查询之复合条件连接查询

    复制代码
    -- 查询员工年龄大于等于25岁的部门
    
    <span style="color: #0000ff;">SELECT</span> <span style="color: #0000ff;">DISTINCT</span><span style="color: #000000;"> department.dept_name
    </span><span style="color: #0000ff;">FROM</span><span style="color: #000000;"> employee,department
    </span><span style="color: #0000ff;">WHERE</span> employee.dept_id <span style="color: #808080;">=</span><span style="color: #000000;"> department.dept_id
    </span><span style="color: #808080;">AND</span> age<span style="color: #808080;">&gt;</span><span style="color: #800000; font-weight: bold;">25</span><span style="color: #000000;">;
    

    --以内连接的方式查询employee和department表,并且以age字段的升序方式显示

    <span style="color: #0000ff;">select</span><span style="color: #000000;"> employee.emp_id,employee.emp_name,employee.age,department.dept_name
    </span><span style="color: #0000ff;">from</span><span style="color: #000000;"> employee,department
    </span><span style="color: #0000ff;">where</span> employee.dept_id <span style="color: #808080;">=</span><span style="color: #000000;"> department.dept_id
    </span><span style="color: #0000ff;">order</span> <span style="color: #0000ff;">by</span> age <span style="color: #0000ff;">asc</span>;</pre>
    
    复制代码

    多表查询之子查询

    复制代码
    -- 子查询是将一个查询语句嵌套在另一个查询语句中。
    -- 内层查询语句的查询结果,可以为外层查询语句提供查询条件。
    -- 子查询中可以包含:IN、NOT IN、ANY、ALL、EXISTS 和 NOT EXISTS等关键字
    -- 还可以包含比较运算符:= 、 !=、> 、<等
    

    -- 1. 带IN关键字的子查询

    ---查询employee表,但dept_id必须在department表中出现过

    select * from employee
    where dept_id IN
    (
    select dept_id from department);

    +--------+----------+------+---------+
    | emp_id | emp_name | age | dept_id |
    +--------+----------+------+---------+
    | 1 | A | 19 | 200 |
    | 2 | B | 26 | 201 |
    | 3 | C | 30 | 201 |
    | 4 | D | 24 | 202 |
    | 5 | E | 20 | 200 |
    +--------+----------+------+---------+
    5 rows in set (0.01 sec)

    -- 2. 带比较运算符的子查询
    -- =、!=、>、>=、<、<=、<>

     <span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> 查询员工年龄大于等于25岁的部门</span>
     <span style="color: #0000ff;">select</span> dept_id,dept_name <span style="color: #0000ff;">from</span><span style="color: #000000;"> department
           </span><span style="color: #0000ff;">where</span> dept_id <span style="color: #808080;">IN</span><span style="color: #000000;">
          (</span><span style="color: #0000ff;">select</span> <span style="color: #0000ff;">DISTINCT</span> dept_id <span style="color: #0000ff;">from</span> employee <span style="color: #0000ff;">where</span> age<span style="color: #808080;">&gt;=</span><span style="color: #800000; font-weight: bold;">25</span><span style="color: #000000;">);
    

    -- 3. 带EXISTS关键字的子查询

    -- EXISTS关字键字表示存在。在使用EXISTS关键字时,内层查询语句不返回查询的记录。
    --
    而是返回一个真假值。Ture或False
    --
    当返回Ture时,外层查询语句将进行查询;当返回值为False时,外层查询语句不进行查询

     <span style="color: #0000ff;">select</span> <span style="color: #808080;">*</span> <span style="color: #0000ff;">from</span><span style="color: #000000;"> employee
              </span><span style="color: #0000ff;">WHERE</span> <span style="color: #808080;">EXISTS</span><span style="color: #000000;">
              (</span><span style="color: #0000ff;">SELECT</span> dept_name <span style="color: #0000ff;">from</span> department <span style="color: #0000ff;">where</span> dept_id<span style="color: #808080;">=</span><span style="color: #800000; font-weight: bold;">203</span><span style="color: #000000;">);
    
      </span><span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;">department表中存在dept_id=203,Ture</span>
    
    
     <span style="color: #0000ff;">select</span> <span style="color: #808080;">*</span> <span style="color: #0000ff;">from</span><span style="color: #000000;"> employee
                </span><span style="color: #0000ff;">WHERE</span> <span style="color: #808080;">EXISTS</span><span style="color: #000000;">
              (</span><span style="color: #0000ff;">SELECT</span> dept_name <span style="color: #0000ff;">from</span> department <span style="color: #0000ff;">where</span> dept_id<span style="color: #808080;">=</span><span style="color: #800000; font-weight: bold;">205</span><span style="color: #000000;">);
    
     </span><span style="color: #008080;user-select:none;">--</span><span style="color: #008080;user-select:none;"> Empty set (0.00 sec)<br><br><br>    ps:  create table t1(select * from t2);</span></pre>
    
    复制代码
查看全文
  • 相关阅读:
    帆软学习之开始
    「csp模拟」模拟测试11
    「csp模拟」模拟测试4
    「csp模拟」模拟测试3
    「csp模拟」模拟测试2
    「csp模拟」模拟测试1
    layui表格中日期格式的处理,从数字变日期格式
    Layui下拉框的事件和表格的刷新
    Layui的下拉框
    Layui按钮的禁用和恢复
  • 原文地址:https://www.cnblogs.com/konglinqingfeng/p/9913327.html
  • Copyright © 2011-2022 走看看