1、初始MySQL
-
JavaEE:企业级java开发 Java Web
-
前端:(页面:展示数据)
-
后台:(连接点:数据库JDBC,链接前端(控制,控制视图跳转,和给前端传送数据))
-
数据库:(存数据,TXT,Excel,word)
只会写代码,学好数据库,基本混饭吃!
操作系统,数据结构预算法!当一个不错的程序员
离散数学,数字电路,体系结构,编译原理+实战经验,高级程序员::优秀的程序员
1.1、为什么学数据库
-
岗位需求
-
现在的世界,大数据时代,得数据者得天下
-
被迫需求,存数据
-
数据库是所有软件体系中最核心的存在 DBA
1.2、什么是数据库
- 数据库:(DB Database)
- 概念:数据仓库,软件,安装在操作系统上(window,Linux,mac。。。。),之上!可存储大量的数据,500万
- 作用:存储数据,管理数据
1.3、数据库分类
关系型数据库:(SQL)
- MySQL,Oracle,SQL Server,DB2,SQLlite
- 通过表和表之间,行和列之间的关系进行数据的存储,学员信息表,考勤表,…
非关系型数据库:(No SQL)Not Only
- Redis,MongoDB
- 非关系型数据库,对象存储,通过对像的自身的属性来决定。
DBMS(数据库管理系统)
- 数据库的管理软件,科学有效的管理我们的数据,维护和获取数据。
- MySQL:数据库管理系统
1.4、MySQL简介
MySQL是一个关系型数据库管理系统
前世:瑞典MySQL AB公司
今生:属于Oracle旗下产品
MySQL是最好的RDBMS(Relational Database Management System , 关系数据库管理系统)应用软件之一。
开源的数据库软件~
体积小,速度快,总体拥有成本低,招人成本比较低,所有人必须会
中小型网站,或者大型网站,集群!
官网:https://www.mysql.com
安装建议:
- 尽量不要使用exe安装,卸载太费劲了。
- 尽可能使用压缩包安装
- 网盘里有压缩包资源:5.7.29和5.7.19 5.7版本稳定,有计算列之类的东西
1.5、安装MySQL
教程: https://www.cnblogs.com/hellokuangshen/p/10242958.html
1、解压
2、把这个包放到电脑环境目录下
3、配置环境变量
4、新建mysql配置文件my.ini
[mysqld]
basedir=D:\Program Files\MySQL-5.7.29\
datadir=D:\ProgramData\MySQL\Data-5.7\data\
port=3306
skip-grant-tables
5、启动管理员模式下的CMD, 并将路径切换至mysql下的bin目录 ,运行所有以下命令
6、安装mysql服务 mysqld –install
7、初始化数据库文件 mysqld --initialize-insecure --user=mysql
8、启动mysql进去修改密码
update mysql.user set authentication_string=password('123456')
where user='root' and Host = 'localhost';
# 刷新权限
flush privileges;
9、用命令行进入MySQL mysql –u root –p
进入mysql管理界面(密码可为空)
10、住掉ini中跳过密码的语句
11、重启mysql。连接测试,如果连接成功就完成了。
1.6、连接数据库
命令行连接
mysql -u root -p --连接数据库
update mysql.user set authentication_string=password('123456') where user='root' and HSOT = 'localhost'; -- 修改用户密码
flush privileges; --刷新权限
-----------------------------------------
--所有语句都使用;结尾
show databases; --查看所有数据库
use school; --切换数据库
-- 显示:Database Changed
show tables; --显示数据库中所有的表
describe student; --显示数据库中所有表的信息
create database test; --创建一个数据库
exit; --退出连接
-- 单行注释(SQL本来的注释)
/* (SQL多行注释)
helloi
asdafqw
*/
数据库xxx语言
- DDL:数据库定义语言
- 创建,删除,更改表结构
- DML:数据库操作语言
- 插入,删除,更改数据
- DQL:数据库查询语言
- 查询数据
- DCL:数据库控制语言
- 用来设置或更改数据库用户或角色权限
- TCL:事务控制语言
- 用来提交和回滚事务
2、操作数据库
操作数据库>操做数据库中的表>操作数据库中表的数据
mysql关键字不区分大小写
2.1、操作数据库
1、创建数据库
create database [if not exists] wostes; -- []代表可选的参数 {}代表必选的参数
2、删除数据库
drop database [if exists] wostes;
3、使用数据库
use `school`;
4、查看数据库
show databases; --查看所有数据库
2.2、数据库的列类型
数值
类型 | 说明 | 大小 |
---|---|---|
tinyint | 十分小的数据 | 1个字节 |
smallint | 较小的数据 | 2个字节 |
mediumint | 中等大小的数据 | 3个字节 |
int | 标准的整数 | 4个字节(常用) |
bigint | 较大的数据 | 8个字节 |
float | 浮点数 | 4个字节 |
double | 浮点数 | 8个字节 |
decimal | 字符串形式的浮点数:金融计算时,一般使用decimal | 基本没有限制,解决Java的精度问题 |
字符串
类型 | 说明 | 大小 |
---|---|---|
char | 字符串固定大小的 | 0-255 |
varchar | 可变字符串 | 0-65535(常用) |
tinytext | 微型文本 | 28 -1 |
text | 文本串(保存大文本) | 216-1 |
时间日期
java.util.Date
类型 | 说明 |
---|---|
date | YYYY-MM-DD 日期格式 |
time | HH:mm:ss 时间格式 |
datetime | YYYY-MM-DD HH:mm:ss 最常用的时间格式 |
timestamp | 时间戳,1970.1.1到现在的毫秒数 也较为常用 |
year | 年份表示 |
null
- 没有值,未知
- 注意:不要使用NULL参与计算,结果为NULL
2.3、数据库的字段属性(重点)
Unsigned:
- 无符号的整数
- 声明了该列不能声明为负数
zerofill:
- 0填充
- 不充足的位数使用0来填充, int(3) — 5 ----> 005
自增:
- 通常理解为自增,自动在 上一条记录 的基础上+1(默认)
- 通常用来设计唯一的主键~ index ,必须是整数类型
- 可以定义设计主键自增的起始值和步长
非空 NULL not null
- 假设设置为 not null ,如果不给它赋值,就会报错!
- NULL,如果不填写值默认就是null
默认:
- 设置为默认值
- sex,默认值为 男 ,如果不指定该列的值,则会有默认的值!
/* 每一个表,都必须存在以下五个字段!阿里规范,做项目时使用
id 主键
`version` 乐观锁
is_delete 伪删除
gmt_create 创建时间
gmt_update 修改时间(最后更新时间)
*/
2.4、创建数据库表(重点)
-- 目标:创建一个school数据库
-- 创建学生表(列,字段)使用sQL创建
-- 学号int 登录密码varchar(20)姓名,性别varchar(2),出生日期(datatime),家庭住址,emai1
-- 注意点,使用英文(),表的名称和字段尽量使用``括起来
-- AUTO_INCREMENT 自增
-- 字符串使用单引号括起来!
-- 所有的语句后面加',',最后一个不用加
-- PRIMARY KEY 主键,一般一个表只有唯一一个主键
create table if not exists `student`(
`id` int(4) not null auto_increment comment '学号',
`name` varchar(30) not null default '匿名' comment '姓名',
`pwd` varchar(20) not null default '123456' comment '密码' ,
`sex` varchar(2) not null default '女' comment '性别',
`birthday` datetime default null comment '出生日期',
`address` varchar(100) default null comment '家庭住址',
`email` varchar(50) default null comment '邮箱',
primary key (`id`)
)ENGINE=InnoDB DEFAULT CHARSET=utf8;
格式:
create table [if not exists] `表名`(
`字段名` 列类型 [属性] [索引] [注释],
`字段名` 列类型 [属性] [索引] [注释],
...
`字段名` 列类型 [属性] [索引] [注释]
)[表类型] [字符集设置] [注释]
获取一些信息:
show create database test; -- 查看创建数据库的语句
show create table student; -- 查看student数据表的定义语句
desc student; -- 显示表的结构
2.5、数据表的类型
-- 关于数据库的类型
/*
INNODB 默认使用~
MyISAM 早些年使用
*/
MYISAM | INNODB | |
---|---|---|
事务支持 | 不支持 | 支持 |
数据行锁定 | 不支持(锁住整个表) | 支持 |
外键约束 | 不支持 | 支持 |
全文索引 | 支持 | 不支持 |
表空间大小 | 较小 | 较大,约为MyISAM的两倍 |
常规使用操作:
- MYISAM:节约空间,速度较快
- INNODB:安全性高,事务的处理,多表多用户操作
在物理空间存在的位置
- 所有的数据库文件都存贮在data目录下,一个文件夹就对应一个数据库;
- 本质还是文件存储!
MySQL 引擎在物理文件上的区别:
- INNODB 在数据库表中只有一个*.frm文件,以及上级目录下的
ibdata1
文件 - MYISAM 对应文件:
- *.frm 表结构的定义文件
- *.MYD 数据文件(data)
- *.MYI 索引文件(index)
设置数据库表的字符集编码
CHARSET=utf8
-
不设置的话,会是MySQL默认的编码集(不支持中文)
-
MySQL的默认编码是Latin1,不支持中文
-
在my.ini中配置默认的编码
character-set-server=utf8
2.6、修改表删除表
修改
-- 修改表名 : alter table 旧表名 rename as 新表名;
alter table `teacher` rename as `teacher1`;
-- 增加表的字段:alter table `表名` add 字段名 列属性;
alter table `teacher1` add age int(11);
-- 修改表的字段:(重命名,修改约束)
-- alter table `表名` modify 字段名 列属性;
alter table `teacher1` modify `age` varchar(11); -- 修改约束
-- alter table `teacher1` change `旧名字` `新名字` [列属性];
alter table `teacher1` change `age` `age1` int(1); -- 字段重命名
-- 删除表的字段:alter table `表名` drop `字段名`;
alter table `teacher1` drop `ag1e`;
删除
-- 删除表(如果表存在在删除)
drop table if exists `teacher1`;
所有的创建和删除操作尽量加上判断,以免报错~
注意点:
- `` 字段名,使用这个包裹
- 注释:-- 和 /* */
- SQL关键字大小写不敏感,建议写小写
- 所有符号全部用英文(半角)
3、数据库管理
3.1、外键(了解即可)
方式一:在创建表时,增加约束(麻烦,比较复杂)
create table if not exists `grade`(
`gradeid` int(10) not null auto_increment comment '年级ID',
`gradename` varchar(20) not null comment '年级名称',
primary key (`gradeid`)
)engine=innodb default CHARSET=utf8;
-- 学生表的gradeid字段 要去引用年级表的gradeid
-- 步骤:
-- 定义外键key
-- 给这个外键添加约束(执行引用) references 引用
create table if not exists `student`(
`id` int(4) not null auto_increment comment '学号',
`name` varchar(30) not null default '匿名' comment '姓名',
`pwd` varchar(20) not null default '123456' comment '密码' ,
`sex` varchar(2) not null default '女' comment '性别',
`birthday` datetime default null comment '出生日期',
`gradeid` int(10) not null comment '学生的年级',
`address` varchar(100) default null comment '家庭住址',
`email` varchar(50) default null comment '邮箱',
primary key (`id`),
key `FK_gradeid` (`gradeid`) ,
constraint `FK_gradeid` foreign key (`gradeid`) references `grade`(`gradeid`)
)engine=Innodb default charset=utf8;
- 删除有外键关系的表的时候,必须要先删除引用别人表的表(从表),再删除被引用的表;
- 例如:想删除grade表时必须先删除student表
方式二:在创建表时没有外键关系
create table if not exists `student`(
`id` int(4) not null auto_increment comment '学号',
`name` varchar(30) not null default '匿名' comment '姓名',
`pwd` varchar(20) not null default '123456' comment '密码' ,
`sex` varchar(2) not null default '女' comment '性别',
`birthday` datetime default null comment '出生日期',
`gradeid` int(10) not null comment '学生的年级',
`address` varchar(100) default null comment '家庭住址',
`email` varchar(50) default null comment '邮箱',
primary key (`id`)
)engine=innodb default charset=utf8;
-- 在创建表时没有外键关系
alter table `student`
add constraint `FX_gradeid` foreign key (`gradeid`) references `grade`(`gradeid`);
-- ALTER TABLE 表 ADD CONSTRAINT 约束名 FOREIGN KEY(作为外键的列) REFERENCES 哪个表(哪个字段)
以上的操作都是物理外键,数据库级别的外键,我们不建议使用,(避免数据库过多造成困扰,了解即可)
最佳实践
- 数据库就是单纯的表,只用来存数据,只有行(数据)和列(字段)
- 我们想使用多张表的数据,想使用外键:程序去实现
3.2、DML语言(全部记住)
数据库意义: 数据存储,数据管理
DML语言:数据操纵语言
- insert
- update
- delete
3.3、添加
insert
-- 插入语句(添加)
-- insert into 表名(字段名,字段名,...) values (值1),(值2),(值3),...
insert into `grade`(`gradename`) values ('大四');
-- 由于主键自增我们可以省略,(如果不写表的字段,他会一一匹配)
insert into `grade` values ('大三'); -- 因为一一对应,所以报错
-- 改正
insert into `grade` values (2,'大三');
-- 一般写插入语句,我们一定要数据和字段一一对应
-- 插入多个字段
insert into `grade`(`gradename`)
values ('大二'),('大一');
insert into `student`(`name`) values ('张三');
insert into `student`(`name`,`pwd`,`sex`) values ('小明','爱大爱','男');
insert into `student`(`name`,`pwd`,`sex`)
values ('小明1','asdas','男'),('小dong','asdadas','女');
语法:insert into 表名(字段名,字段名,...) values (值1),(值2),(值3),...
注意事项:
- 字段和字段之间用英文 逗号隔开
- 字段是可以省略的,但是后面的值必须一一对应,不能少
- 可以同时插入多条数据,values后面的值,需要使用,隔开即可
values (值1),(值2),(值3),...
3.4、修改
update 修改谁(条件) set 字段名 = 新值
-- 修改学生名字
update `student` set `name`='kuangshen' where id=1;
-- 不指定条件的情况下,会改动所有表
update `student` set `name`='小明';
-- 修改多个属性 逗号隔开
update `student` set `name`='xixix',`sex`='男' where id=1;
-- 语法
-- update `表名` set colunm_name=value,[colunm_name=value,...] where 条件;
条件: where 子句 运算符 id等于某个值,大于某个值,在某个区间内修改
操作符会返回 布尔值
操作符 | 含义 | 范围 | 结果 |
---|---|---|---|
= | 等于 | id=5 | |
<> 或 != | 不等于 | id<>6 | |
> | 大于 | id>6 | |
< | 小于 | id<6 | |
<= | 小于等于 | id<=6 | |
>= | 大于等于 | id>=5 | |
between … and … | 在范围之间(闭区间) | [1,4] | |
and | A和B && | 5>1 and 3>1 | true |
or | A或B || | 5>1 or 3<1 | true |
-- 通过多个条件来定位数据
update `student` set `sex`='x' where `name`='小明' and `sex`='女';
语法:update 表名 set colunm_name=value,[colunm_name=value,...] where 条件;
注意:
- column_name 是数据的列,尽量带上``
- 条件,筛选的条件,如果没有指定,则会修改所有的列
- value是一个具体的值,也可以是一个变量
update `student` set `birthday`=current_time where `name`='小明' and `pwd`='asdas';
3.5、删除
delete 命令
语法:delete from 表名 [where 条件]
-- 删除数据(避免这样写,会全部删除)
delete from `student`;
-- 删除指定数据
delete from `student` where id=1;
truncate 命令
作用:完全清空一个数据表,表的结构和索引约束不会变!
delete 和 truncate 的区别
- 相同点:都能删除数据,,都不会删除表结构
- 不同点:
- truncate 重新设置
自增列
计数器会归零 - truncate 不会影响事务
- truncate 重新设置
-- 测试 delete 和 truncate 的不同
create table `test` (
`id` int not null auto_increment,
`coll` varchar(20) not null,
primary key(`id`)
)engine=Innodb default charset=utf8;
insert into `test` (`coll`) values('das');
delete from `test` ; -- 不会影响自增
truncate table `test`; -- 自增重新从1开始计算
了解即可:DELETE删除的问题
,重启数据库,现象
- INNODB :自增列会从1开始,(自增列的计数存在内存中,断电即失)
- MYISAM :继续从上一个自增量开始(存在文件中,不会丢失)
4、DQL查询数据(最重点)
4.1、DQL
(Data Query LANGUAGE :数据查询语言)
- 所有的查询操作都用它
select
- 简单的查询,复杂的查询都能做
- 数据库中最核心的语言,最重要的语句
- 使用频率最高的语句
Select常用语法:
SELECT [ALL | DISTINCT]
{* | table.* | [table.field1[as alias1][,table.field2[as alias2]][,...]]}
FROM table_name [as table_alias]
[left | right | inner join table_name2] #联合查询
[WHERE ...] -- 指定结果需满足的条件
[GROUP BY ...] -- 指定结果按照哪几个字段来分组
[HAVING] -- 过滤分组的记录必须满足的次要条件
[ORDER BY ...] -- 指定查询记录按一个或多个条件排序
[LIMIT {[offset,]row_count | row_countOFFSET offset}];
-- 指定查询的记录从哪条至哪条
==注意:[]
代表可选,{}
代表必选
Select 完整的语法:
SELECT
[ ALL | DISTINCT | DISTINCTROW ]
[ HIGH_PRIORITY ]
[ STRAIGHT_J0IN ]
[ SQL_SMALL_RESULT ] [ SQL_BIG_RESULT] [ SQL_BUFFER_RESULT]
[ SQL_CACHE | SQL_NO_CACHE] [ SQL_CALC_FOUND_ROWS]
select_expr [, select_expr...]
[ FRoM table_references
[ PARTITION partition_list]
[ WHERE where_condition ]
[ GROUP BY { col_name | expr | position}
[ ASC | DESC],...[ WITH ROLLUP]]
[ HAVING where_condition]
[ ORDER BY { col_name | expr | position}
[ ASC | DESC ],..]
[ LIMIT { [offset,] row_count | row_count OFFSET offset}]
[ PROCEDURE procedure_name(argument_1ist)]
[INTO OUTFILE 'file_name'
[CHARACTER SET charset_name]
export_options
| INTO DUMPFILE 'file_name'
| INTO var_name [,var_name]]
[FOR UPDATE | LOCK IN SHARE MODE]]
4.2、测试素材
/*
SQLyog Ultimate v10.00 Beta1
MySQL - 5.7.19 : Database - school
*********************************************************************
*/
/*!40101 SET NAMES utf8 */;
/*!40101 SET SQL_MODE=''*/;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
CREATE DATABASE /*!32312 IF NOT EXISTS*/`school` /*!40100 DEFAULT CHARACTER SET utf8 */;
USE `school`;
/*Table structure for table `grade` */
DROP TABLE IF EXISTS `grade`;
CREATE TABLE `grade` (
`GradeID` INT(11) NOT NULL AUTO_INCREMENT COMMENT '年级编号',
`GradeName` VARCHAR(50) NOT NULL COMMENT '年级名称',
PRIMARY KEY (`GradeID`)
) ENGINE=INNODB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
/*Data for the table `grade` */
INSERT INTO `grade`(`GradeID`,`GradeName`) VALUES (1,'大一'),(2,'大二'),(3,'大三'),(4,'大四'),(5,'预科班');
/*Table structure for table `result` */
DROP TABLE IF EXISTS `result`;
CREATE TABLE `result` (
`StudentNo` INT(4) NOT NULL COMMENT '学号',
`SubjectNo` INT(4) NOT NULL COMMENT '课程编号',
`ExamDate` DATETIME NOT NULL COMMENT '考试日期',
`StudentResult` INT(4) NOT NULL COMMENT '考试成绩',
KEY `SubjectNo` (`SubjectNo`)
) ENGINE=INNODB DEFAULT CHARSET=utf8;
/*Data for the table `result` */
INSERT INTO `result`(`StudentNo`,`SubjectNo`,`ExamDate`,`StudentResult`) VALUES (1000,1,'2013-11-11 16:00:00',94),(1000,2,'2012-11-10 10:00:00',75),(1000,3,'2011-12-19 10:00:00',76),(1000,4,'2010-11-18 11:00:00',93),(1000,5,'2013-11-11 14:00:00',97),(1000,6,'2012-09-13 15:00:00',87),(1000,7,'2011-10-16 16:00:00',79),(1000,8,'2010-11-11 16:00:00',74),(1000,9,'2013-11-21 10:00:00',69),(1000,10,'2012-11-11 12:00:00',78),(1000,11,'2011-11-11 14:00:00',66),(1000,12,'2010-11-11 15:00:00',82),(1000,13,'2013-11-11 14:00:00',94),(1000,14,'2012-11-11 15:00:00',98),(1000,15,'2011-12-11 10:00:00',70),(1000,16,'2010-09-11 10:00:00',74),(1001,1,'2013-11-11 16:00:00',76),(1001,2,'2012-11-10 10:00:00',93),(1001,3,'2011-12-19 10:00:00',65),(1001,4,'2010-11-18 11:00:00',71),(1001,5,'2013-11-11 14:00:00',98),(1001,6,'2012-09-13 15:00:00',74),(1001,7,'2011-10-16 16:00:00',85),(1001,8,'2010-11-11 16:00:00',69),(1001,9,'2013-11-21 10:00:00',63),(1001,10,'2012-11-11 12:00:00',70),(1001,11,'2011-11-11 14:00:00',62),(1001,12,'2010-11-11 15:00:00',90),(1001,13,'2013-11-11 14:00:00',97),(1001,14,'2012-11-11 15:00:00',89),(1001,15,'2011-12-11 10:00:00',72),(1001,16,'2010-09-11 10:00:00',90),(1002,1,'2013-11-11 16:00:00',61),(1002,2,'2012-11-10 10:00:00',80),(1002,3,'2011-12-19 10:00:00',89),(1002,4,'2010-11-18 11:00:00',88),(1002,5,'2013-11-11 14:00:00',82),(1002,6,'2012-09-13 15:00:00',91),(1002,7,'2011-10-16 16:00:00',63),(1002,8,'2010-11-11 16:00:00',84),(1002,9,'2013-11-21 10:00:00',60),(1002,10,'2012-11-11 12:00:00',71),(1002,11,'2011-11-11 14:00:00',93),(1002,12,'2010-11-11 15:00:00',96),(1002,13,'2013-11-11 14:00:00',83),(1002,14,'2012-11-11 15:00:00',69),(1002,15,'2011-12-11 10:00:00',89),(1002,16,'2010-09-11 10:00:00',83),(1003,1,'2013-11-11 16:00:00',91),(1003,2,'2012-11-10 10:00:00',75),(1003,3,'2011-12-19 10:00:00',65),(1003,4,'2010-11-18 11:00:00',63),(1003,5,'2013-11-11 14:00:00',90),(1003,6,'2012-09-13 15:00:00',96),(1003,7,'2011-10-16 16:00:00',97),(1003,8,'2010-11-11 16:00:00',77),(1003,9,'2013-11-21 10:00:00',62),(1003,10,'2012-11-11 12:00:00',81),(1003,11,'2011-11-11 14:00:00',76),(1003,12,'2010-11-11 15:00:00',61),(1003,13,'2013-11-11 14:00:00',93),(1003,14,'2012-11-11 15:00:00',79),(1003,15,'2011-12-11 10:00:00',78),(1003,16,'2010-09-11 10:00:00',96),(1004,1,'2013-11-11 16:00:00',84),(1004,2,'2012-11-10 10:00:00',79),(1004,3,'2011-12-19 10:00:00',76),(1004,4,'2010-11-18 11:00:00',78),(1004,5,'2013-11-11 14:00:00',81),(1004,6,'2012-09-13 15:00:00',90),(1004,7,'2011-10-16 16:00:00',63),(1004,8,'2010-11-11 16:00:00',89),(1004,9,'2013-11-21 10:00:00',67),(1004,10,'2012-11-11 12:00:00',100),(1004,11,'2011-11-11 14:00:00',94),(1004,12,'2010-11-11 15:00:00',65),(1004,13,'2013-11-11 14:00:00',86),(1004,14,'2012-11-11 15:00:00',77),(1004,15,'2011-12-11 10:00:00',82),(1004,16,'2010-09-11 10:00:00',87),(1005,1,'2013-11-11 16:00:00',82),(1005,2,'2012-11-10 10:00:00',92),(1005,3,'2011-12-19 10:00:00',80),(1005,4,'2010-11-18 11:00:00',92),(1005,5,'2013-11-11 14:00:00',97),(1005,6,'2012-09-13 15:00:00',72),(1005,7,'2011-10-16 16:00:00',84),(1005,8,'2010-11-11 16:00:00',79),(1005,9,'2013-11-21 10:00:00',76),(1005,10,'2012-11-11 12:00:00',87),(1005,11,'2011-11-11 14:00:00',65),(1005,12,'2010-11-11 15:00:00',67),(1005,13,'2013-11-11 14:00:00',63),(1005,14,'2012-11-11 15:00:00',64),(1005,15,'2011-12-11 10:00:00',99),(1005,16,'2010-09-11 10:00:00',97),(1006,1,'2013-11-11 16:00:00',82),(1006,2,'2012-11-10 10:00:00',73),(1006,3,'2011-12-19 10:00:00',79),(1006,4,'2010-11-18 11:00:00',63),(1006,5,'2013-11-11 14:00:00',97),(1006,6,'2012-09-13 15:00:00',83),(1006,7,'2011-10-16 16:00:00',78),(1006,8,'2010-11-11 16:00:00',88),(1006,9,'2013-11-21 10:00:00',89),(1006,10,'2012-11-11 12:00:00',82),(1006,11,'2011-11-11 14:00:00',70),(1006,12,'2010-11-11 15:00:00',69),(1006,13,'2013-11-11 14:00:00',64),(1006,14,'2012-11-11 15:00:00',80),(1006,15,'2011-12-11 10:00:00',90),(1006,16,'2010-09-11 10:00:00',85),(1007,1,'2013-11-11 16:00:00',87),(1007,2,'2012-11-10 10:00:00',63),(1007,3,'2011-12-19 10:00:00',70),(1007,4,'2010-11-18 11:00:00',74),(1007,5,'2013-11-11 14:00:00',79),(1007,6,'2012-09-13 15:00:00',83),(1007,7,'2011-10-16 16:00:00',86),(1007,8,'2010-11-11 16:00:00',76),(1007,9,'2013-11-21 10:00:00',65),(1007,10,'2012-11-11 12:00:00',87),(1007,11,'2011-11-11 14:00:00',69),(1007,12,'2010-11-11 15:00:00',69),(1007,13,'2013-11-11 14:00:00',90),(1007,14,'2012-11-11 15:00:00',84),(1007,15,'2011-12-11 10:00:00',95),(1007,16,'2010-09-11 10:00:00',92),(1008,1,'2013-11-11 16:00:00',96),(1008,2,'2012-11-10 10:00:00',62),(1008,3,'2011-12-19 10:00:00',97),(1008,4,'2010-11-18 11:00:00',84),(1008,5,'2013-11-11 14:00:00',86),(1008,6,'2012-09-13 15:00:00',72),(1008,7,'2011-10-16 16:00:00',67),(1008,8,'2010-11-11 16:00:00',83),(1008,9,'2013-11-21 10:00:00',86),(1008,10,'2012-11-11 12:00:00',60),(1008,11,'2011-11-11 14:00:00',61),(1008,12,'2010-11-11 15:00:00',68),(1008,13,'2013-11-11 14:00:00',99),(1008,14,'2012-11-11 15:00:00',77),(1008,15,'2011-12-11 10:00:00',73),(1008,16,'2010-09-11 10:00:00',78),(1009,1,'2013-11-11 16:00:00',67),(1009,2,'2012-11-10 10:00:00',70),(1009,3,'2011-12-19 10:00:00',75),(1009,4,'2010-11-18 11:00:00',92),(1009,5,'2013-11-11 14:00:00',76),(1009,6,'2012-09-13 15:00:00',90),(1009,7,'2011-10-16 16:00:00',62),(1009,8,'2010-11-11 16:00:00',68),(1009,9,'2013-11-21 10:00:00',70),(1009,10,'2012-11-11 12:00:00',83),(1009,11,'2011-11-11 14:00:00',88),(1009,12,'2010-11-11 15:00:00',65),(1009,13,'2013-11-11 14:00:00',91),(1009,14,'2012-11-11 15:00:00',99),(1009,15,'2011-12-11 10:00:00',65),(1009,16,'2010-09-11 10:00:00',83),(1010,1,'2013-11-11 16:00:00',83),(1010,2,'2012-11-10 10:00:00',87),(1010,3,'2011-12-19 10:00:00',89),(1010,4,'2010-11-18 11:00:00',99),(1010,5,'2013-11-11 14:00:00',91),(1010,6,'2012-09-13 15:00:00',96),(1010,7,'2011-10-16 16:00:00',72),(1010,8,'2010-11-11 16:00:00',72),(1010,9,'2013-11-21 10:00:00',98),(1010,10,'2012-11-11 12:00:00',73),(1010,11,'2011-11-11 14:00:00',68),(1010,12,'2010-11-11 15:00:00',62),(1010,13,'2013-11-11 14:00:00',67),(1010,14,'2012-11-11 15:00:00',69),(1010,15,'2011-12-11 10:00:00',71),(1010,16,'2010-09-11 10:00:00',66),(1011,1,'2013-11-11 16:00:00',62),(1011,2,'2012-11-10 10:00:00',72),(1011,3,'2011-12-19 10:00:00',96),(1011,4,'2010-11-18 11:00:00',64),(1011,5,'2013-11-11 14:00:00',89),(1011,6,'2012-09-13 15:00:00',91),(1011,7,'2011-10-16 16:00:00',95),(1011,8,'2010-11-11 16:00:00',96),(1011,9,'2013-11-21 10:00:00',89),(1011,10,'2012-11-11 12:00:00',73),(1011,11,'2011-11-11 14:00:00',82),(1011,12,'2010-11-11 15:00:00',98),(1011,13,'2013-11-11 14:00:00',66),(1011,14,'2012-11-11 15:00:00',69),(1011,15,'2011-12-11 10:00:00',91),(1011,16,'2010-09-11 10:00:00',69),(1012,1,'2013-11-11 16:00:00',86),(1012,2,'2012-11-10 10:00:00',66),(1012,3,'2011-12-19 10:00:00',97),(1012,4,'2010-11-18 11:00:00',69),(1012,5,'2013-11-11 14:00:00',70),(1012,6,'2012-09-13 15:00:00',74),(1012,7,'2011-10-16 16:00:00',91),(1012,8,'2010-11-11 16:00:00',97),(1012,9,'2013-11-21 10:00:00',84),(1012,10,'2012-11-11 12:00:00',82),(1012,11,'2011-11-11 14:00:00',90),(1012,12,'2010-11-11 15:00:00',91),(1012,13,'2013-11-11 14:00:00',91),(1012,14,'2012-11-11 15:00:00',97),(1012,15,'2011-12-11 10:00:00',85),(1012,16,'2010-09-11 10:00:00',90),(1013,1,'2013-11-11 16:00:00',73),(1013,2,'2012-11-10 10:00:00',69),(1013,3,'2011-12-19 10:00:00',91),(1013,4,'2010-11-18 11:00:00',72),(1013,5,'2013-11-11 14:00:00',76),(1013,6,'2012-09-13 15:00:00',87),(1013,7,'2011-10-16 16:00:00',61),(1013,8,'2010-11-11 16:00:00',77),(1013,9,'2013-11-21 10:00:00',83),(1013,10,'2012-11-11 12:00:00',99),(1013,11,'2011-11-11 14:00:00',91),(1013,12,'2010-11-11 15:00:00',84),(1013,13,'2013-11-11 14:00:00',98),(1013,14,'2012-11-11 15:00:00',74),(1013,15,'2011-12-11 10:00:00',92),(1013,16,'2010-09-11 10:00:00',90),(1014,1,'2013-11-11 16:00:00',64),(1014,2,'2012-11-10 10:00:00',81),(1014,3,'2011-12-19 10:00:00',79),(1014,4,'2010-11-18 11:00:00',74),(1014,5,'2013-11-11 14:00:00',65),(1014,6,'2012-09-13 15:00:00',88),(1014,7,'2011-10-16 16:00:00',86),(1014,8,'2010-11-11 16:00:00',77),(1014,9,'2013-11-21 10:00:00',86),(1014,10,'2012-11-11 12:00:00',85),(1014,11,'2011-11-11 14:00:00',86),(1014,12,'2010-11-11 15:00:00',75),(1014,13,'2013-11-11 14:00:00',89),(1014,14,'2012-11-11 15:00:00',79),(1014,15,'2011-12-11 10:00:00',73),(1014,16,'2010-09-11 10:00:00',68),(1015,1,'2013-11-11 16:00:00',99),(1015,2,'2012-11-10 10:00:00',60),(1015,3,'2011-12-19 10:00:00',60),(1015,4,'2010-11-18 11:00:00',75),(1015,5,'2013-11-11 14:00:00',78),(1015,6,'2012-09-13 15:00:00',78),(1015,7,'2011-10-16 16:00:00',84),(1015,8,'2010-11-11 16:00:00',95),(1015,9,'2013-11-21 10:00:00',93),(1015,10,'2012-11-11 12:00:00',79),(1015,11,'2011-11-11 14:00:00',74),(1015,12,'2010-11-11 15:00:00',65),(1015,13,'2013-11-11 14:00:00',63),(1015,14,'2012-11-11 15:00:00',74),(1015,15,'2011-12-11 10:00:00',67),(1015,16,'2010-09-11 10:00:00',65),(1016,1,'2013-11-11 16:00:00',97),(1016,2,'2012-11-10 10:00:00',90),(1016,3,'2011-12-19 10:00:00',77),(1016,4,'2010-11-18 11:00:00',75),(1016,5,'2013-11-11 14:00:00',75),(1016,6,'2012-09-13 15:00:00',97),(1016,7,'2011-10-16 16:00:00',96),(1016,8,'2010-11-11 16:00:00',92),(1016,9,'2013-11-21 10:00:00',62),(1016,10,'2012-11-11 12:00:00',83),(1016,11,'2011-11-11 14:00:00',98),(1016,12,'2010-11-11 15:00:00',94),(1016,13,'2013-11-11 14:00:00',62),(1016,14,'2012-11-11 15:00:00',97),(1016,15,'2011-12-11 10:00:00',76),(1016,16,'2010-09-11 10:00:00',82),(1017,1,'2013-11-11 16:00:00',100),(1017,2,'2012-11-10 10:00:00',88),(1017,3,'2011-12-19 10:00:00',86),(1017,4,'2010-11-18 11:00:00',73),(1017,5,'2013-11-11 14:00:00',96),(1017,6,'2012-09-13 15:00:00',64),(1017,7,'2011-10-16 16:00:00',81),(1017,8,'2010-11-11 16:00:00',66),(1017,9,'2013-11-21 10:00:00',76),(1017,10,'2012-11-11 12:00:00',95),(1017,11,'2011-11-11 14:00:00',73),(1017,12,'2010-11-11 15:00:00',82),(1017,13,'2013-11-11 14:00:00',85),(1017,14,'2012-11-11 15:00:00',68),(1017,15,'2011-12-11 10:00:00',99),(1017,16,'2010-09-11 10:00:00',76);
/*Table structure for table `student` */
DROP TABLE IF EXISTS `student`;
CREATE TABLE `student` (
`StudentNo` INT(4) NOT NULL COMMENT '学号',
`LoginPwd` VARCHAR(20) DEFAULT NULL,
`StudentName` VARCHAR(20) DEFAULT NULL COMMENT '学生姓名',
`Sex` TINYINT(1) DEFAULT NULL COMMENT '性别,取值0或1',
`GradeId` INT(11) DEFAULT NULL COMMENT '年级编号',
`Phone` VARCHAR(50) NOT NULL COMMENT '联系电话,允许为空,即可选输入',
`Address` VARCHAR(255) NOT NULL COMMENT '地址,允许为空,即可选输入',
`BornDate` DATETIME DEFAULT NULL COMMENT '出生时间',
`Email` VARCHAR(50) NOT NULL COMMENT '邮箱账号,允许为空,即可选输入',
`IdentityCard` VARCHAR(18) DEFAULT NULL COMMENT '身份证号',
PRIMARY KEY (`StudentNo`),
UNIQUE KEY `IdentityCard` (`IdentityCard`),
KEY `Email` (`Email`)
) ENGINE=MYISAM DEFAULT CHARSET=utf8;
/*Data for the table `student` */
INSERT INTO `student`(`StudentNo`,`LoginPwd`,`StudentName`,`Sex`,`GradeId`,`Phone`,`Address`,`BornDate`,`Email`,`IdentityCard`) VALUES (1000,'111111','郭靖',1,1,'13500000001','北京海淀区中关村大街1号','1986-12-11 00:00:00','test1@bdqn.cn','450323198612111234'),(1001,'123456','李文才',1,2,'13500000002','河南洛阳','1981-12-31 00:00:00','test1@bdqn.cn','450323198112311234'),(1002,'111111','李斯文',1,1,'13500000003','天津市和平区','1986-11-30 00:00:00','test1@bdqn.cn','450323198611301234'),(1003,'123456','武松',1,3,'13500000004','上海卢湾区','1986-12-31 00:00:00','test1@bdqn.cn','450323198612314234'),(1004,'123456','张三',1,4,'13500000005','北京市通州','1989-12-31 00:00:00','test1@bdqn.cn','450323198612311244'),(1005,'123456','张秋丽 ',2,1,'13500000006','广西桂林市灵川','1986-12-31 00:00:00','test1@bdqn.cn','450323198612311214'),(1006,'123456','肖梅',2,4,'13500000007','地址不详','1986-12-31 00:00:00','test1@bdqn.cn','450323198612311134'),(1007,'111111','欧阳峻峰',1,1,'13500000008','北京东城区','1986-12-31 00:00:00','test1@bdqn.cn','450323198612311133'),(1008,'111111','梅超风',1,1,'13500000009','河南洛阳','1986-12-31 00:00:00','test1@bdqn.cn','450323198612311221'),(1009,'123456','刘毅',1,2,'13500000011','安徽','1986-12-31 00:00:00','test1@bdqn.cn','450323198612311231'),(1010,'111111','大凡',1,1,'13500000012','河南洛阳','1986-12-31 00:00:00','test1@bdqn.cn','450323198612311044'),(1011,'111111','奥丹斯',1,1,'13500000013','北京海淀区中关村大街*号','1984-12-31 00:00:00','test1@bdqn.cn','450323198412311234'),(1012,'123456','多伦',2,3,'13500000014','广西南宁中央大街','1986-12-31 00:00:00','test1@bdqn.cn','450323198612311334'),(1013,'123456','李梅',2,1,'13500000015','上海卢湾区','1986-12-31 00:00:00','test1@bdqn.cn','450323198612311534'),(1014,'123456','张得',2,4,'13500000016','北京海淀区中关村大街*号','1986-12-31 00:00:00','test1@bdqn.cn','450323198612311264'),(1015,'123456','李东方',1,4,'13500000017','广西桂林市灵川','1976-12-31 00:00:00','test1@bdqn.cn','450323197612311234'),(1016,'111111','刘奋斗',1,1,'13500000018','上海卢湾区','1986-12-31 00:00:00','test1@bdqn.cn','450323198612311251'),(1017,'123456','可可',2,3,'13500000019','北京长安街1号','1981-09-10 00:00:00','test1@bdqn.cn','450323198109108311'),(10066,'','Tom',1,1,'13500000000','','0000-00-00 00:00:00','email@22.com','33123123123123123');
/*Table structure for table `subject` */
DROP TABLE IF EXISTS `subject`;
CREATE TABLE `subject` (
`SubjectNo` INT(11) NOT NULL AUTO_INCREMENT COMMENT '课程编号',
`SubjectName` VARCHAR(50) DEFAULT NULL COMMENT '课程名称',
`ClassHour` INT(4) DEFAULT NULL COMMENT '学时',
`GradeID` INT(4) DEFAULT NULL COMMENT '年级编号',
PRIMARY KEY (`SubjectNo`)
) ENGINE=INNODB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8;
/*Data for the table `subject` */
INSERT INTO `subject`(`SubjectNo`,`SubjectName`,`ClassHour`,`GradeID`) VALUES (1,'高等数学-1',110,1),(2,'高等数学-2',110,2),(3,'高等数学-3',100,3),(4,'高等数学-4',130,4),(5,'C语言-1',110,1),(6,'C语言-2',110,2),(7,'C语言-3',100,3),(8,'C语言-4',130,4),(9,'JAVA第一学年',110,1),(10,'JAVA第二学年',110,2),(11,'JAVA第三学年',100,3),(12,'JAVA第四学年',130,4),(13,'数据库结构-1',110,1),(14,'数据库结构-2',110,2),(15,'数据库结构-3',100,3),(16,'数据库结构-4',130,4),(17,'C#基础',130,1);
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
4.3、指定查询字段
-- 查询全部学生 select 字段 from 表
select * from `student`;
-- 查询指定字段
select `StudentNo`,`StudentName` from `student`;
-- 别名,给结果起一个名字 AS 可以给字段起别名,也可以给表起别名
select `StudentNo` as 学号,`StudentName` as 学生姓名 from `student` AS s;
-- 函数 CONCAT(a,b)
select concat('姓名:',StudentName) as 新名字 from `student`;
语法:select 字段,... from 表
有的时候,列的名字不是那么的见名知意。所以我们起别名 AS: 字段名 as 别名 表名 as 别名
去重 distinct
作用:去除 Select
查询出来的结果中重复的数据,只显示一条
-- 查询一下哪些同学参加了考试 成绩
select * from result; -- 全部的成绩
select `StudentNo` from result; -- 查看有哪些同学参加了考试
select distinct `StudentNo` from result; -- 去除重复数据,去重
数据库的列 (表达式)
select version(); -- 查看系统版本(函数)
select 100*3-1 as 计算结果; -- 用来计算(表达式)
select @@auto_increment_increment -- 查询自增的步长
-- 学员考试成绩 +1 分查看
select `StudentNo`,`StudentResult` as 原来得分,`StudentResult`+1 as 提分后 from result;
4.4、where 条件子句
作用:检索数据中符合条件
的值
搜索的条件由一个或者多个表达式组成!结果 布尔值。
逻辑运算符
运算符 | 语法 | 描述 |
---|---|---|
and && | a and b a&&b | 逻辑与 |
or || | a or b a || b | 逻辑或 |
Not ! | not a !a | 逻辑非 |
-- ===================== where ===========================
select `StudentNo`,`StudentName` from `student`;
-- 查询考试成绩在 95~100 分之间
select `StudentNo`,`StudentResult`
from `result`
where `StudentResult`>=95 and `StudentResult`<=100;
-- and &&
select `StudentNo`,`StudentResult`
from `result`
where `StudentResult`>=95 && `StudentResult`<=100;
-- 模糊查询(区间)
select `StudentNo`,`StudentResult`
from `result`
where StudentResult between 95 and 100;
-- 除了1000学号以外的同学的成绩
-- !=
select `StudentNo`,`StudentResult`
from `result`
where `StudentNo`!=1000;
-- <>
select `StudentNo`,`StudentResult`
from `result`
where `StudentNo`<>1000;
-- not
select `StudentNo`,`StudentResult`
from `result`
where not `StudentNo`=1000;
模糊查询:比较运算符
运算符 | 语法 | 描述 |
---|---|---|
IS NULL | a is null | 如果操作符为NULL,结果为真 |
IS NOT NULL | a is not null | 如果操作符不为NULL,结果为真 |
BETWEEN | a between b and c | 若a在b和c之间,结果为真 |
like | a like b | SQL匹配,如果a匹配b,则结果为真 |
in | a in (a1,a2,a3) | 假设a在a1,a2,…,其中的某一个值中,结果为真 |
-- ================= 模糊查询 ==================
-- 查询姓刘的同学
select `StudentNo`,`StudentName`
from `student`
where `StudentName` like '刘%';
-- 查询姓刘的同学,并且后面只有一个字的
select `StudentNo`,`StudentName`
from `student`
where `StudentName` like '刘_';
-- 查询姓刘的同学,后面有两个字的
select `StudentNo`,`StudentName`
from `student`
where `StudentName` like '刘__';
-- 查询名字中间有嘉字的
select `StudentNo`,`StudentName`
from `student`
where `StudentName` like '%嘉%';
-- ======================= in =========================
-- 查询 1001,1002,1003 号学员
select `StudentNo`,`StudentName`
from `student`
where `StudentNo` in (1001,1002,1003);
-- 查询在安徽的学生
select `StudentNo`,`StudentName` ,`Address`
from `student`
where `Address` in ('安徽','河南洛阳');
-- ================ null not null ================
-- 查询性别为空的学生
select `StudentNo`,`StudentName` ,`sex`
from `student`
where `sex` is null;
-- 查询有出生日期的学生, 不为空
select `StudentNo`,`StudentName` ,`BornDate`
from `student`
where `BornDate` is not null;
-- 查询没有出生日期的学生
select `StudentNo`,`StudentName` ,`BornDate`
from `student`
where `BornDate` is null;
-- 查询学员所属的年级
select StudentNo,`StudentName`,`GradeName`
from `student` as s
inner join `grade` as g
on s.GradeId = g.GradeID;
-- 查询科目所属的年级
select SubjectName,`GradeName`
from `subject` as `sub`
inner join `grade` as g
on sub.GradeID = g.GradeID;
-- 查询参加了 数据库结构-1 考试的同学的信息:学号,学生姓名,分数
select s.StudentNo,StudentName,StudentResult
from `student` as s
inner join `result` as r
on s.StudentNo = r.StudentNo
inner join `subject` as `sub`
on r.SubjectNo = sub.SubjectNo
where SubjectName='数据库结构-1';
4.5、连接查询
/* 思路
1. 分析需求,分析查询的字段来自哪些表,(连接查询)
2. 确定使用那种连接:7种
确定交叉点,这两个表中那个字段是相同的
判断的条件:学生表中 StudentNo = 成绩表中 StudentNo
*/
-- join on 连接查询
-- where 等值查询
select s.StudentNo,StudentName,SubjectNo,StudentResult
from student as s inner join result as r
on s.StudentNo = r.StudentNo;
-- Right Join
-- as 可以省略
select s.StudentNo,StudentName,SubjectNo,StudentResult
from student s right join result r
on s.StudentNo = r.StudentNo;
-- Left Join
select s.StudentNo,StudentName,SubjectNo,StudentResult
from student as s left join result as r
on s.StudentNo = r.StudentNo;
操作 | 描述 |
---|---|
Inner Join | 如果表中至少一个匹配,就返回该行 |
Left Join | 会从做左表中返回所有的值,即使右表中没有匹配 |
Right Join | 会从做右表中返回所有的值,即使左表中没有匹配 |
-- 查询缺考的同学
select s.StudentNo,StudentName,SubjectNo,StudentResult
from student as s left join result as r
on s.StudentNo = r.StudentNo
where StudentResult is null;
-- 思考题(查询参加考试的同学的信息:学号,学生姓名,科目名,分数)
/* 思路
1. 分析需求,分析查询的字段来自哪些表,(连接查询)
2. 确定使用那种连接:7种
确定交叉点,这两个表中那个字段是相同的
判断的条件:学生表中 StudentNo = 成绩表中 StudentNo
*/
select s.StudentNo,StudentName,SubjectName,StudentResult
from student as s
right join result as r
on s.StudentNo = r.StudentNo
left join `subject` as sub
on sub.SubjectNo = r.SubjectNo;
-- 我要查询哪些数据 select...
-- 从那几个表中查 from 表 XXX join 连接的表 on 交叉条件
-- 假设存在一种多张表查询,慢慢来,先查询两张表
-- from a left join b
-- from a right join b
自连接
自己的表和自己的表连接,核心:一张表拆为两张一样的表即可
父表:
categoryid | categoryName |
---|---|
2 | 信息技术 |
3 | 软件开发 |
5 | 美术设计 |
子表:
pid | categoryid | categoryName |
---|---|---|
3 | 4 | 数据库 |
2 | 8 | 办公信息 |
3 | 6 | web开发 |
5 | 7 | 美术设计 |
操作:查询父类对应的子类关系
父类 | 子类 |
---|---|
信息技术 | 办公信息 |
软件开发 | 数据库 |
软件开发 | web开发 |
美术设计 | PS技术 |
4.6、分页和排序
排序
-- 排序:升序:ASC 降序:DESC
-- ORDER BY [通过哪个字段排] [怎么排:升序/降序]
-- 查询结果的根据 成绩降序 排序
select s.StudentNo,StudentName,SubjectName,StudentResult
from student as s
inner join result as r
on s.StudentNo = r.StudentNo
inner join `subject` as sub
on sub.SubjectNo = r.SubjectNo
where SubjectName = 'JAVA第一学年'
order by StudentResult DESC;
分页
-- 100万条数据
-- 为什么要分页
-- 缓解数据库压力,给人更好的体验,瀑布流和分页不同
--
-- 分页 每页只显示五条数据
-- 语法: limit 起始值,页面大小
-- 网页应用:当前,总的页数,页面大小
-- LIMIT 0,5 1~5
-- LIMIT 1,5 2~6
-- LIMIT 6,5
select s.`StudentNo`,`StudentName`,`SubjectName`,`StudentResult`
from student as s
inner join result as r
on s.StudentNo = r.StudentNo
inner join `subject` as sub
on r.SubjectNo = sub.SubjectNo
where SubjectName='数据库结构-1'
order by StudentResult ASC
limit 1,5;
-- 第一页 limit 0,5 (1-1)*5
-- 第一页 limit 6,5 (2-1)*5
-- 第一页 limit 10,5 (3-1)*5
-- 第N页 limit 0,5 (n-1)*pageSize,pageSize
-- 【pageSize】:页面大小
-- 【(n-1)*pageSize】:起始值
-- 【n】:当前页
-- 【数据总数/页面大小】:总页数
语法:limit 查询的起始下标, pageSize
4.7、子查询
where (这个值是计算出来的)
本质:在 where 语句中嵌套一个子查询语句
-- 思考:
-- 查询JAVA第一学年 课程成绩排名前十的学生,并且分数要大于八十的学生信息(学号,姓名,课程名称,分数)
select s.`StudentNo`,`StudentName`,`SubjectName`,`StudentResult`
from `student` as s
inner join `result` as r
on s.StudentNo = r.StudentNo
inner join `subject` as sub
on r.SubjectNo = sub.SubjectNo
where SubjectName='JAVA第一学年' and StudentResult>=80
order by StudentResult ASC;
-- 查询 数据库结构-1 的所有考试结果(学号,科目编号,成绩),降序排列
-- 方式一:使用连接查询
select StudentNo,sub.SubjectNo,StudentResult
from`result` as r
inner join `subject` as sub
on sub.SubjectNo = r.SubjectNo
where SubjectName='数据库结构-1'
order by StudentResult DESC;
-- 方式二:使用子查询(由里及外)
select StudentNo,SubjectNo,StudentResult
from `result`
where SubjectNo in (
select `SubjectNo`
from `subject`
where SubjectName='数据库结构-1'
)
order by StudentResult DESC;
-- 查询课程为 高等数学-2 且分数不小于80的同学的学号和姓名
select s.StudentNo,StudentName
from `student` as s
inner join `result` as r
on s.StudentNo = r.StudentNo
inner join `subject` as sub
on r.SubjectNo = sub.SubjectNo
where `StudentResult`>=80 and `SubjectName`='高等数学-2';
-- 分数不小于80的同学的学号和姓名
select `StudentNo`,`StudentName`
from `student`
where `StudentNo` in (
select `StudentNo`
from `result`
where `StudentResult`>=80
);
-- 在这个基础上增加一个科目,高等数学-2
-- 查询 高等数学-2 的编号
select `SubjectNo`
from `subject`
where `SubjectName`='高等数学-2';
-- 综上改造
select `StudentNo`,`StudentName` from `student`
where `StudentNo` in (
select `StudentNo` from `result` where `StudentResult`>=80 and `SubjectNo`in (
select `SubjectNo` from `subject` where `SubjectName`='高等数学-2'
)
);
-- 练习: 查询C语言-1前五名同学的成绩的信息(学号,姓名,成绩)
-- 使用子查询
select s.`StudentNo`,`StudentName`,`StudentResult`
from `student` as s
inner join `result` as r
where s.`StudentNo` in (
select `StudentNo` from `result` where `SubjectNo` in (
select `SubjectNo` from `subject` where `SubjectName`='C语言-1'
)
order by `StudentResult` ASC
)
limit 5;
4.8、分组和过滤
-- 查询不同课程的平均分,最高分,最低分,平均分大于80
-- 核心:(根据不同的课程分组)
select SubjectName,AVG(`StudentResult`) as 平均分,MAX(`StudentResult`) as 最大值,MIN(`StudentResult`) as 最小值
from `result` as r
inner join `subject` sub
on r.SubjectNo = sub.SubjectNo
GROUP BY r.`SubjectNo` -- 通过什么字段来分组
having 平均分>=80;
5、MySQL函数
官网:https://dev.mysql.com/doc/refman/5.7/en/func-op-summary-ref.html
5.1、常用函数
-- ======================== 常用函数 ========================
-- 数学运算
select ABS(-9);
select ceiling(5.4); -- 向上取整
select floor(5.6); -- 向下取整
select RAND(); -- 返回一个 0~1 之间的随机数
select SIGN(9); -- 判断一个数的符号:正数返回 1
select SIGN(-2); -- 判断一个数的符号:正数返回 -1
-- 字符串函数
-- 字符串长度
select CHAR_LENGTH("北京欢迎你");
-- 拼接字符串
select CONCAT("即使再小","的帆","也能远航");
-- 查询并替换,从某个位置开始替换某个长度
-- INSERT(str1,str1的起始点,要被替换的长度【从起始点算起】,str2);
select INSERT("我爱编程",2,1,"超级热爱");
-- 全部转为大写
select UPPER("ASdas");
-- 全部转为小写
select LOWER("DXSsda");
-- 返回第一次出现子串的索引
select INSTR("beijing hbsb","b");
-- 替换指定字符串
select REPLACE("狂神说坚持就能成功","坚持","努力");
-- 返回指定的子串
-- 参数二:开始截取的位置 参数三:截取的长度
select SUBSTR("狂神说坚持就能成功",2,4);
-- 字符串反转
select REVERSE("北京");
-- 查询姓 周 的同学,将周替换为 邹
select `StudentName` from `student` where `StudentName` like "周%";
select replace(`StudentName`,'周','邹')
from `student`
where `StudentName` like "周%";
-- 时间和日期函数(记住)
select CURRENT_DATE(); -- 获取当前日期:2020-03-14
select CURDATE(); -- 获取当前日期:2020-03-14
select NOW(); -- 获取当前的时间
select localtime(); -- 获取本地时间
select sysdate(); -- 获取系统时间
-- 系统
select SYSTEM_USER(); -- root@localhost
select USER(); -- root@localhost
select version(); -- 5.7.29
5.2、聚合函数(常用)
函数名称 | 描述 |
---|---|
COUNT() | 计数 |
SUM() | 求和 |
AVG() | 平均值 |
MAX() | 最大值 |
MIN() | 最小值 |
… | … |
-- ============================ 聚合函数 =============================
-- 都能统计表中的数据(想查询一个表中有多少记录,就用count())
select count(`StudentNo`) from `student`; -- count(字段) 会忽略所有null值
select count(*) from `student`; -- count(*) 不会忽略null值 本质:计算行数
select count(1) from `student`; -- count(1) 不会忽略所有的null值 本质:计算行数
select SUM(`StudentResult`) as 总和 from result;
select AVG(`StudentResult`) as 平均值 from result;
select MAX(`StudentResult`) as 最大值 from result;
select MIN(`StudentResult`) as 最小值 from result;
5.3、数据库级别的MD5加密(扩展)
什么是MD5?
主要增强算法复杂度和不可逆性。
MD5不可逆,具体的值的md5值是一样的
-- =========测试MD5加密=======
CREATE TABLE testmd5(
id INT(4)NOT NULL,
`name` VARCHAR(20) NOT NULL,
pwd VARCHAR(50) NOT NULL,
PRIMARY KEY(id)
)ENGINE=INNODB DEFAULT CHARSET=utf8;
-- 明文密码
INSERT INTO testmd5 VALUES(1,'zhangsan','123456'),(2,'1isi','123456'),(3,'wangwu','123456');
-- 加密
update testmd5 set pwd=MD5(pwd) where id=1;
update testmd5 set pwd=MD5(pwd)
-- 插入的时候加密
insert into testmd5(id,`name`,`pwd`) values (4,'xiaoming',MD5("dasd"));
-- 如何校验:将用户传递进来的密码,进行MD5加密,然后比对加密后的值
select * from `testmd5` where `name`='xiaoming' and `pwd`=MD5("dasd");
6、事务
6.1、什么是事务?
要么都成功,要么都失败
————————
1、执行SQL语句,A给B转账 A 1000 —》200 800
2、执行SQL语句,B收到A的钱 A 800 -----》200 1000
————————
将一组SQL放在一个批次中去执行
事务原则:原子性,一致性,隔离性,持久性 (脏读,幻读,不可重复读)
参考博客链接:
原子性:
要么都成功,要么都失败;
一致性:
事务前后的 数据完整性要保证一致,1000;
隔离性:
事务的隔离性是多个用户并发放稳数据库时,数据库为每一个用户开启的事务,不能被其他事务操作,事务之间要相互隔离;
持久性:
事务一但提交就不可逆,将被持久化到数据库中;
隔离导致的一些问题
脏读:
指一个事务读取了,另外一个事务未提交的数据;
不可重复读:
在一个事务内读取表中的某一行数据,多次读取结果不同。(这个不一定是错误,只是某些场合不对)
幻读(虚读):
是指在一个事务内读取到了别的事务插入的数据,导致前后读取不一致。
执行事务
-- mysql 是默认开始事务自动提交的
set autocommit = 0; -- 关闭
set autocommit = 1; -- 开启(默认的)
-- 手动处理事务
set autocommit = 0; -- 关闭自动提交
-- 事务开启
start transaction; -- 标记一个事务的开始,从这个之后的 SQL 都在同一个事务中
insert xx;
insert xx;
-- 提交(持久化)(成功!)
comment;
-- 失败:回滚
-- 回滚到原来的样子
rollback;
-- 事务结束
set autocommit = 1; -- 开启自动提交
-- 了解
SAVEPOINT 保存点名; -- 设置一个事务的保存点
ROLLBACK TO 保存点名; -- 回滚到保存点
RELEASE SAVEPOINT 保存点名; -- 撤销保存点
模拟场景
-- 模拟转账
create database shop Character set utf8 collate utf8_general_ci;
use shop;
CREATE TABLE `account`(
`id` INT(3) NOT NULL AUTO_INCREMENT,
`name` VARCHAR(30) NOT NULL,
`money` DECIMAL(9,2) NOT NULL,
PRIMARY KEY(`id`)
)ENGINE=INNODB DEFAULT CHARSET=utf8;
insert into `account`(`name`,`money`)
values ('A',2000.00),('B',1000.00);
-- 模拟转账:事务
set autocommit = 0; -- 关闭自动提交
start transaction; -- 开启一个事务
update account set money=money-500 where `name`='A'; -- A 减 500
update account set money=money+500 where `name`='B'; -- B 加 500
commit; -- 提交事务就被持久化
rollback; -- 回滚
set autocommit=1;-- 恢复默认值
7、索引
7.1、索引的分类
在一个表中,主键索引只能有一个,唯一索引可以有多个
- 主键索引(
PRIMARY KEY
)- 唯一的标识,主键不可重复,只能有一个列作为主键
- 唯一索引(
UNIQUE KEY
)- 避免重复的列出现,唯一索引可以重复,多个列都可以标识为 唯一索引
- 常规索引(
KEY/INDEX
)- 默认的,index。key关键字来设置
- 全文索引(
FullText
)- 在特定的数据库引擎下才有:MyISAM
- 快速定位数据
基础语法
-- 索引的使用
-- 1、在创建表时给字段增加索引
-- 2、创建完毕后增加索引
-- 显示所有索引信息
show index from student;
-- 增加一个全文索引 索引名(列名)
alter table school.student add fulltext index `studentName_index` (`StudentName`);
-- EXPLAIN 分析SQL执行情况
explain select * from student; -- 非全文索引
-- MATCH() AGAINST() 全文搜索的函数 首先建立全文索引
explain select * from student where MATCh(studentName)AGAINST("刘");
MySQL 优化----参考:https://blog.csdn.net/jiadajing267/article/details/81269067
7.2、测试索引
7.2.1、测试素材表
-- 建立索引测试表
create TABLE `app_user`(
`id` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
`name` VARCHAR(50) DEFAULT '' COMMENT '用户昵称',
`email` VARCHAR(50) NOT NULL COMMENT '用户邮箱',
`phone` VARCHAR(20) DEFAULT '' COMMENT'手机号',
`gender` TINYINT(4) UNSIGNED DEFAULT '0' COMMENT '性别(0:男;1:女)',
`password` VARCHAR(100) NOT NULL COMMENT '密码',
`age` TINYINT(4) DEFAULT '0' COMMENT'年龄',
`create_time` DATETIME DEFAULT CURRENT_TIMESTAMP,
`update_time` TIMESTAMP NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '',
PRIMARY KEY(id)
)ENGINE=INNODB DEFAULT CHARSET=utf8mb4 COMMENT='app用户表';
7.2.2、数据构造
-- 插入数据
-- 单条数据插入
insert into `app_user`(`name`,`email`,`phone`,`gender`,`password`,`age`)
values(
CONCAT('用户1'),
'214535544@qq.com',
CONCAT('18',FLOOR(RAND()*((999999999-100000000)+100000000))),
FLOOR(RAND()*2),
UUID(),
FLOOR(RAND()*100)
);
-- 编写函数插入100万条数据
DELIMITER $$
create function mock_data()
returns int
begin
declare num int default 1000000;
declare i int default 0;
while i<num do
insert into `app_user`(`name`,`email`,`phone`,`gender`,`password`,`age`)
values(
CONCAT('用户',i),
'214535544@qq.com',
CONCAT('18',FLOOR(RAND()*((999999999-100000000)+100000000))),
FLOOR(RAND()*2),
UUID(),
FLOOR(RAND()*100)
);
set i = i+1;
end while;
return i;
end;
select mock_data();
7.2.3、测试索引
select * from `app_user` where `name`='用户9999'; -- 0.631
select * from `app_user` where `name`='用户9999'; -- 0.437
select * from `app_user` where `name`='用户9999'; -- 0.451
EXPLAIN select * from `app_user` where `name`='用户9999'; -- rows:992262
select * from student; -- 0.017
-- id_表名_字段名
-- create index 索引名 on 表(字段)
create index id_app_user_name on `app_user`(`name`);
select * from `app_user` where `name`='用户9999'; -- 0.015
select * from `app_user` where `name`='用户9999'; -- 0.025
EXPLAIN select * from `app_user` where `name`='用户9999'; -- rows:1
7.2.4、差别显示(截图)
创建索引前
创建索引后
]
索引在小数据量时,用处不大,但是在大数据时,区别十分明显
7.3、索引原则
- 索引不是越多越好
- 不要对经常变动的数据列添加索引
- 小数据量的表不需要添加索引
- 索引一般加在常用来查询的字段上
索引的数据结构
Hash 类型的索引
BTree:InnoDB的默认数据结构
每日读一遍最好
- 非常值得阅读:http://blog.codinglabs.org/articles/theory-of-mysql-index.html
8、权限管理和备份
8.1、用户管理
使用可视化软件进行操作
- 学习一个自己常用的即可
SQL 命令操作
用户表:mysql.user
本质:对这张表进行增删改查
-- 用户管理
-- 创建用户 create user 用户名 identified by '密码'
create user hubz identified by "123456";
-- 修改密码(修改当前用户的密码)
set password = '123456';
-- 修改密码(修改制定账户的密码)
set password for hubz = password('12345');
-- 重命名
rename user hubz to hubz2;
-- 用户授权 ALL ALL PRIVILEGES 全部的权限 库,表
-- ALL PRIVILEGES:除了给别人授权的权限没有,其他的权限都有了
grant ALL PRIVILEGES ON *.* to hubz2;
-- 查询权限
show grants for hubz2; -- 查看指定用户的权限
show grants for root@localhost;
-- ROOT 用户权限:GRANT ALL PRIVILEGES ON *.* TO 'root'@'localhost' WITH GRANT OPTION
-- 多了一个给别人授权的权限
-- 撤销权限 REVOKE 哪些权限 在哪个库撤销的,给谁撤销
revoke ALL PRIVILEGES ON *.* from hubz2;
-- 删除用户
drop user hubz2;
8.2、MySQL备份
-
为什么要备份
- 保证重要数据不丢失
- 数据转移时方便
-
MySQL数据库的备份方式
-
直接拷贝物理文件
-
使用可视化工具导出
-
使用命令行导出:
mysqldump
命令行的使用# mysqldump -h 主机名 -u 用户名 -p密码 数据库 表名 >物理磁盘位置/文件名 # 注意: 密码最好和-p连在一起
-
mysqldump -h localhost -u root -p123456 school student >D:a.sql
# 一次导出多个表
# mysqldump -h 主机名 -u 用户名 -p密码 数据库 表1 表2 >物理磁盘位置/文件名
mysqldump -h localhost -u root -p123456 school student grade >D:b.sql
# 导出数据库
# mysqldump -h 主机名 -u 用户名 -p密码 数据库 >物理磁盘位置/文件名
mysqldump -h localhost -u root -p123456 school>D:b.sql
# 导入
# 登陆的情况下,切换到指定数据库
# source 备份文件
source D:a.sql
# 或者使用命令行
mysql -uroot -p123456 school <D:a.sql
```
9、规范数据库设计
9.1、为什么要设计数据库
数据库比较复杂时,我们就需要设计了
糟糕的数据库设计:
- 数据冗余,浪费空间
- 数据库插入和删除都会非常麻烦,异常【屏蔽使用屋里外键】
- 程序的性能差
良好的数据库设计:
- 节省内存空间
- 保证数据库的完整性
- 方便我们开发系统
软件开发中关于数据库设计:
- 分析需求:分析业务和需要处理的数据库的需求
- 概要设计:设计关系图E-R图
9.2、三大范式
为什么需要数据规范化?
- 信息重复
- 更新异常
- 插入异常
- 无法正常显示信息
- 删除异常
- 丢失有效信息
三大范式
第一范式(1NF)
- 原子性:保证每一列不可再分
第二范式(2NF)
- 前提:满足第一范式
- 每张表只描述一件事情
第三范式(3NF)
- 前提:满足第一范式和第二范式
- 需要确保数据表中的每一列数据都和主键直接相关,而不能间接相关。
(规范数据库的设计)
规范和性能的问题
关联查询的表不得超过三张表
-
考虑商业化的须求和目标,(成本,用户体验)数据库的性能更加重要
-
在规范性能问题的时候需要适当考虑一下规范性!
-
故意给某些表增加一些冗余字段。(从多表查询变成单表查询)
-
故意增加一些计算列(从大数据量降低为小数据量的查询:索引)