==============================SQL备忘 CRUD 查询 多表 事件等===============================
--------------------------------------------------------------------------------------------------
一.数据库
1.创建数据库
create database [if not exists] db_name [character set xxx] [collate xxx]
*创建一个名称为mydb1的数据库。
create database mydb1;
*创建一个使用utf8字符集的mydb2数据库。
create database mydb2 character set utf8;
*创建一个使用utf8字符集。并带校对规则的mydb3数据库。
create database mydb3 character set utf8 collate utf8_bin ;
2.查看数据库
show databases;查看全部数据库
show create database db_name; 查看数据库的创建方式
3.改动数据库
alter database db_name [character set xxx] [collate xxxx]
4.删除数据库
drop database [if exists] db_name;
5.使用数据库
切换数据库 use db_name;
查看当前使用的数据库 select database();
--------------------------------------------------------------------------------------------------
二、表
1.创建表
create table tab_name(
field1 type,
field2 type,
...
fieldn type
)[character set xxx][collate xxx];
****java和mysql的数据类型比較
String ---------------------- char(n) varchar(n) 255 65535
byte short int long float double -------------- tinyint smallint int bigint float double
boolean ------------------ bit 0/1
Date ------------------ Date、Time、DateTime、timestamp
FileInputStream FileReader ------------------------------ Blob Text
*创建一个员工表employee
create table employee(
id int primary key auto_increment ,
name varchar(20),
gender bit default 1,
birthday date,
entry_date date,
job varchar(20),
salary double,
resume text
);
约束:
primary key
unique
not null
auto_increment 主键字段必须是数字类型。
外键约束
2.查看表信息
desc tab_name 查看表结构
show tables 查看当前数据库中的全部的表
show create table tab_name 查看当前数据库表建表语句
3.改动表结构
(1)添加一列
alter table tab_name add [column] 列名 类型;
(2)改动一列类型
alter table tab_name modify 列名 类型;
(3)改动列名
alter table tab_name change [column] 列名 新列名 类型;
(4)删除一列
alter table tab_name drop [column] 列名;
(5)改动表名
rename table 表名 to 新表名;
(6)修该表所用的字符集
alter table student character set utf8;
4.删除表
drop table tab_name;
--------------------------------------------------------------------------------------------------
三、表记录
1.添加一条记录insert
insert into tab_name (field1,filed2,.......) values (value1,value2,.......);
*插入的数据应与字段的数据类型同样。
*数据的大小应在列的规定范围内,比如:不能将一个长度为80的字符串增加到长度为40的列中。
*在values中列出的数据位置必须与被增加的列的排列位置相相应。
*字符和日期型数据应包括在单引號中‘zhang‘ ‘2013-04-20‘
*插入空值:不指定某列的值或insert into table value(null)。则该列取空值。
*假设要插入全部字段能够省写列列表,直接按表中字段顺序写值列表insert into tab_name values(value1,value2,......);
*练习:使用insert语句向表中插入三个员工的信息。
insert into emp (name,birthday,entry_date,job,salary) values (‘张飞‘,‘1990-09-09‘,‘2000-01-01‘,‘打手‘,999);
insert into emp (name,birthday,entry_date,job,salary) values (‘关羽‘,‘1989-08-08‘,‘2000-01-01‘,‘財神‘,9999);
insert into emp (name,birthday,entry_date,job,salary) values (‘赵云‘,‘1991-07-07‘,‘2000-01-02‘,‘保安‘,888);
insert into emp values (7,‘黄忠‘,1,‘1970-05-05‘,‘2001-01-01‘,‘战神‘,1000,null);
2.改动表记录
update tab_name set field1=value1,field2=value2,......[where 语句]
*UPDATE语法能够用新值更新原有表行中的各列。
*SET子句指示要改动哪些列和要给予哪些值。
*WHERE子句指定应更新哪些行。
如没有WHERE子句,则更新全部的行。
*实验:
将全部员工薪水改动为5000元。
update emp set salary=5000;
update emp set salary=3000 where name=‘zs‘;
将姓名为’ls’的员工薪水改动为4000元,job改为ccc。
update emp set salary=4000,job=‘ccc‘ where name=‘zs‘;
update emp set salar=salary+4000 where name=‘wu‘;
3.删除表操作
delete from tab_name [where ....]
*假设不跟where语句则删除整张表中的数据
*delete仅仅能用来删除一行记录,不能值删除一行记录中的某一列值(这是update操作)。
*delete语句仅仅能删除表中的内容。不能删除表本身,想要删除表,用drop
*同insert和update一样,从一个表中删除记录将引起其他表的參照完整性问题,在改动数据库数据时。头脑中应该始终不要忘记这个潜在的问题。
*TRUNCATE TABLE也能够删除表中的全部数据,词语句首先摧毁表,再新建表。此种方式删除的数据不能在事务中恢复。
*实验:
删除表中名称为’zs’的记录。
delete from emp where name=‘黄忠‘;
删除表中全部记录。
delete from emp;
使用truncate删除表中记录。
truncate table emp;
4.select操作
(1)select [distinct] *|field1,field2,...... from tab_name 当中from指定从哪张表筛选,*表示查找全部列,也能够指定一个列列表明白指定要查找的列,distinct用来剔除反复行。
*实验:
查询表中全部学生的信息。
select * from exam;
查询表中全部学生的姓名和相应的英语成绩。
select name,english from exam;
过滤表中反复数据。
select distinct english from exam;
(2)select 也能够使用表达式,而且能够使用 as 别名
在全部学生分数上加10分特长分显示。
select name,english+10,chinese+10,math+10 from exam;
统计每一个学生的总分。
select name,english+chinese+math from exam;
select name,english+chinese+math as 总成绩 from exam;
select name,english+chinese+math 总成绩 from exam;
select name english from exam;
*练习:
查询姓名为XXX的学生成绩
select * from exam where name=‘张飞‘;
查询英语成绩大于90分的同学
select name,english from exam where english>90;
查询总分大于200分的全部同学
select name,math+english+chinese as 总成绩 from exam where math+english+chinese>200 ;
*where字句中能够使用:
*比較运算符:
> < >= <= <>
between 10 and 20 值在10到20之间
in(10,20,3)值是10或20或30
like ‘张pattern‘ pattern能够是%或者_,假设是%则表示随意多字符,此例中张三丰 张飞 张abcd 。假设是_则表示一个字符张_。张飞符合。张
Is null
*逻辑运算符
在多个条件直接能够使用逻辑运算符 and or not
*实验
查询英语分数在 80-100之间的同学。
select name ,english from exam where english between 80 and 100;
select name ,math from exam where math in (75,76,77);
查询全部姓张的学生成绩。
select * from exam where name like ‘张%‘;
select name from exam where math>70 and chinese >80;
查找缺考数学的学生的姓名
select name from exam where math is null;
(4)Order by 指定排序的列,排序的列即但是表中的列名,也能够是select 语句后指定的别名。
Asc 升序、Desc 降序,当中asc为默认值
ORDER BY 子句应位于SELECT语句的结尾。
*练习:
select * from exam order by math;
对总分排序按从高到低的顺序输出
select name ,(ifnull(math,0)+ifnull(chinese,0)+ifnull(english,0)) 总成绩 from exam order by 总成绩 desc;
对姓张的学生成绩排序输出
select name ,(ifnull(math,0)+ifnull(chinese,0)+ifnull(english,0)) 总成绩 from exam where name like ‘张%‘ order by 总成绩 desc;
(5)聚合函数:技巧,先不要管聚合函数要干嘛,先把要求的内容查出来再包上聚合函数就可以。
count(列名)
统计一个班级共同拥有多少学生?先查出全部的学生,再用count包上
select count(*) from exam;
统计数学成绩大于70的学生有多少个?
select count(math) from exam where math>70;
统计总分大于250的人数有多少?
select count(name) from exam where (ifnull(math,0)+ifnull(chinese,0)+ifnull(english,0))>250;
sum(列名)
统计一个班级数学总成绩?先查出全部的数学成绩,再用sum包上
select sum(math) from exam;
统计一个班级语文、英语、数学各科的总成绩
select sum(math),sum(english),sum(chinese) from exam;
统计一个班级语文、英语、数学的成绩总和
select sum(ifnull(math,0)+ifnull(chinese,0)+ifnull(english,0)) as 总成绩 from exam;
统计一个班级语文成绩平均分
select sum(chinese)/count(*) from exam ;
AVG(列名):
求一个班级数学平均分?先查出全部的数学分,然后用avg包上。
select avg(ifnull(math,0)) from exam;
求一个班级总分平均分
select avg((ifnull(math,0)+ifnull(chinese,0)+ifnull(english,0))) from exam ;
Max、Min
求班级最高分和最低分(数值范围在统计中特别实用)
select Max((ifnull(math,0)+ifnull(chinese,0)+ifnull(english,0))) from exam;
select Min((ifnull(math,0)+ifnull(chinese,0)+ifnull(english,0))) from exam;
(6)group by字句。其后能够接多个列名,也能够跟having子句对group by 的结果进行筛选。
练习:对订单表中商品归类后,显示每一类商品的总价
select product,sum(price) from orders group by product;
练习:查询购买了几类商品,而且每类总价大于100的商品
select product。sum(price) from orders group by product having sum(price)>100;
!~having 和 where 的区别: where语句用在分组之前的筛选。having用在分组之后的筛选,having中能够用合计函数,where中就不行。使用where的地方能够用having替代。
练习:查询商品列表中除了橘子以外的商品,每一类商品的总价格大于500元的商品的名字
select product,sum(price) from orders where product<>‘桔子‘group by product having sum(price)>500;
(7)重点:Select from where group by having order by
Mysql在运行sql语句时的运行顺序:from where select group by having order by
*分析:
select math+english+chinese as 总成绩 from exam where 总成绩 >250; ---- 不成功
select math+english+chinese as 总成绩 from exam having 总成绩 >250; --- 成功
select math+english+chinese as 总成绩 from exam group by 总成绩 having 总成绩 >250; ----成功
select math+english+chinese as 总成绩 from exam order by 总成绩;----成功
select * from exam as 成绩 where 成绩.math>85; ---- 成功
--------------------------------------------------------------------------------------------------
四、约束
1.创建表时指定约束:
create table tb(
id int primary key auto_increment,
name varchar(20) unique not null,
ref_id int,
foreign key(ref_id) references tb2(id)
);
create table tb2(
id int primary key auto_increment
);
2.外键约束:
(1)添加外键:
能够明白指定外键的名称,假设不指定外键的名称,mysql会自己主动为你创建一个外键名称。
RESTRICT : 仅仅要本表格里面有指向主表的数据, 在主表里面就无法删除相关记录。
CASCADE : 假设在foreign key 所指向的那个表里面删除一条记录。那么在此表里面的跟那个key一样的全部记录都会一同删掉。
alter table book add [constraint FK_BOOK] foreign key(pubid) references pub_com(id) [on delete restrict] [on update restrict];
(2)删除外键
alter table 表名 drop foreign key 外键(区分大写和小写。外键名能够desc 表名查看);
3.主键约束:
(1)添加主键(自己主动增长,仅仅有主键能够自己主动增长)
Alter table tb add primary key(id) [auto_increment];
(2)删除主键
alter table 表名 drop primary key
(3)添加自己主动增长
Alter table employee modify id int auto_increment;
(4)删除自己主动增长
Alter table tb modify id int;
--------------------------------------------------------------------------------------------------
五、多表设计
一对一(311教室和20130405班级,双方都是一):在随意一方保存还有一方的主键
一对多、多对一(班级和学生。当中班级为1,学生为多):在多的一方保存一的一方的主键
多对多(教师和学生,双方都是多):使用中间表,保存相应关系
--------------------------------------------------------------------------------------------------
六、多表查询
create table tb (id int primary key,name varchar(20) );
create table ta (
id int primary key,
name varchar(20),
tb_id int
);
insert into tb values(1,‘財务部‘);
insert into tb values(2,‘人事部‘);
insert into tb values(3,‘科技部‘);
insert into ta values (1,‘刘备‘,1);
insert into ta values (2,‘关羽‘,2);
insert into ta values (3,‘张飞‘,3);
mysql> select * from ta;
+----+------+-------+
| id | name | tb_id |
+----+------+-------+
| 1 | aaa | 1 |
| 2 | bbb | 2 |
| 3 | bbb | 4 |
+----+------+-------+
mysql> select * from tb;
+----+------+
| id | name |
+----+------+
| 1 | xxx |
| 2 | yyy |
| 3 | yyy |
+----+------+
1.笛卡尔积查询:两张表中一条一条相应的记录。m条记录和n条记录查询,最后得到m*n条记录,当中非常多错误数据
select * from ta ,tb;
mysql> select * from ta ,tb;
+----+------+-------+----+------+
| id | name | tb_id | id | name |
+----+------+-------+----+------+
| 1 | aaa | 1 | 1 | xxx |
| 2 | bbb | 2 | 1 | xxx |
| 3 | bbb | 4 | 1 | xxx |
| 1 | aaa | 1 | 2 | yyy |
| 2 | bbb | 2 | 2 | yyy |
| 3 | bbb | 4 | 2 | yyy |
| 1 | aaa | 1 | 3 | yyy |
| 2 | bbb | 2 | 3 | yyy |
| 3 | bbb | 4 | 3 | yyy |
+----+------+-------+----+------+
2.内连接:查询两张表中都有的关联数据,相当于利用条件从笛卡尔积结果中筛选出了正确的结果。
select * from ta ,tb where ta.tb_id = tb.id;
select * from ta inner join tb on ta.tb_id = tb.id;
mysql> select * from ta inner join tb on ta.tb_id = tb.id;
+----+------+-------+----+------+
| id | name | tb_id | id | name |
+----+------+-------+----+------+
| 1 | aaa | 1 | 1 | xxx |
| 2 | bbb | 2 | 2 | yyy |
+----+------+-------+----+------+
3.外连接
(1)左外连接:在内连接的基础上添加左边有右边没有的结果
select * from ta left join tb on ta.tb_id = tb.id;
mysql> select * from ta left join tb on ta.tb_id = tb.id;
+----+------+-------+------+------+
| id | name | tb_id | id | name |
+----+------+-------+------+------+
| 1 | aaa | 1 | 1 | xxx |
| 2 | bbb | 2 | 2 | yyy |
| 3 | bbb | 4 | NULL | NULL |
+----+------+-------+------+------+
(2)右外连接:在内连接的基础上添加右边有左边没有的结果
select * from ta right join tb on ta.tb_id = tb.id;
mysql> select * from ta right join tb on ta.tb_id = tb.id;
+------+------+-------+----+------+
| id | name | tb_id | id | name |
+------+------+-------+----+------+
| 1 | aaa | 1 | 1 | xxx |
| 2 | bbb | 2 | 2 | yyy |
| NULL | NULL | NULL | 3 | yyy |
+------+------+-------+----+------+
(3)全外连接:在内连接的基础上添加左边有右边没有的和右边有左边没有的结果
select * from ta full join tb on ta.tb_id = tb.id; --mysql不支持全外连接
select * from ta left join tb on ta.tb_id = tb.id
union
select * from ta right join tb on ta.tb_id = tb.id;
mysql> select * from ta left join tb on ta.tb_id = tb.id
-> union
-> select * from ta right join tb on ta.tb_id = tb.id; --mysql能够使用此种方式间接实现全外连接
+------+------+-------+------+------+
| id | name | tb_id | id | name |
+------+------+-------+------+------+
| 1 | aaa | 1 | 1 | xxx |
| 2 | bbb | 2 | 2 | yyy |
| 3 | bbb | 4 | NULL | NULL |
| NULL | NULL | NULL | 3 | yyy |
+------+------+-------+------+------+