数据库的基本操作
DML(数据操作语言)
insert、update、delete
DQL(数据定义语言)
create、drop、alter
创建数据库
create database 数据库名称 约束条件;
修改数据库
alter database 约束条件=修改后的值;
删除数据库
drop datebase 数据库名称;
使用数据库
use 数据库名称;
注意:在执行表结构操作前一定要选择使用对应的某一个数据库
表操作
创建表单
create table 表名 (字段名 字段类型(字段长度) 约束条件,.......);
修改表结构
1、给某个表添加字段
语法:alter table 表名 add 字段名 字段类型(字段长度) 约束条件;
alter table titem add category varchar(20) not null;
2、修改某个字段的类型及长度
语法:alter table 表名 modify 字段名 字段类型(字段长度) 约束条件;
alter table titem modify category varchar(10) not null;
3、修改某个字段的字段名,字段类型及长度
语法:alter table 表名 change 原字段名 新字段名 新字段类型(长度) 约束条件;
alter table titem change category cat varchar(20) notnull;
4、删除某个字段
语法:alter table 表名 drop 字段名
alter table titem drop cat;
注意 : 在修改表数据的时候 null-->not null,表中一定不能有值,否则会修改失败。
插入数据
语法:insert into 表名 values(值1,值2,值3);
给当前表中所有的字段数据赋值
insert into people values(1001,'张三','12','成都');
语法2:insert into 表名(字段名1,字段名2,字段名3) values (值1,值2,值3);
insert into people(name) values('李四');
字段类型:
整数
int : 整数
bigint : 大整数
tinyint : 小整数
浮点数
double 双精度浮点数
double(m,d): m代表数据的总长度,d代表小数点后面的位数
decimal( m,d): m代表数据的总长度,d代表小数点后面的位数
涉及高精度运算时使用decimal 通常涉及钱的地方使用decimal
字符
char(m) :m表示当前存储的长度
name char(10);表示当前字段name存储字符长度为10
name-->张三 所占长度为10
varchar(m) :
name varchar(10);表示当前字段name存储字符最大长度为10
name-->李四 所占长度为2
m:最大取值65535,一般长度超过255推荐使用text
text :
二进制
binary : 一般不用
存储图片,音视频,文件
导致整个数据库效率低下
时间
date
time
datetime
注意:
mysql进行数据存储时,对于不同的数据类型,会自动进行数据转换,但转换时会使当前此字段的索引失效
mysql不区分大小写
修改数据
语法:
update 表名 set 要修改的字段名 = 新的值 where 条件
例如:
update people set name='张三丰' where id='1001';
having的使用
having通常与聚合函数、group by一起使用,但是where条件并不是在查询出结果集之后运行,而having不一样,having是针对结果集做筛选的,所以有聚合函数时,having取代了where。
多表查询:
普通多表查询
select 字段 from 表1,表2 .... where 表1.字段 = 表2.字段
子查询
思路 步骤:
1.判断出这个问题涉及几张表
2.先求什么
3.在求什么
4.合并
例如:select * from xs where
xs_id in(select xs_id from xs_kc group by xs_id having avg(kc_cj)>80);
Join on
select * from 表1 join 表2 on 条件 where 条件;
自连接
一般用于自己比较自己
如: 自己选修了 101的课程成绩大于选修了102的课程成绩的学生信息
-- 1.0 求101>102的学生id
select A.xs_id from (select * from xs_kc where kc_id = 101) A
join (select * from xs_kc where kc_id = 102) B
on A.xs_id = B.xs_id
where A.kc_cj > B.kc_cj
--2.0 求101>102的学生信息
select * from xs
where xs.xs_id in (
select A.xs_id from (select * from xs_kc where kc_id = 101) A
join (select * from xs_kc where kc_id = 102) B
on A.xs_id = B.xs_id
where A.kc_cj > B.kc_cj
);
左查询 : left
· 左查询以左边的表为参照物,可以匹配不对应的信息,将其显示出来.
右查询
右查询以右边的表为参照物,可以匹配不对应的信息,将其显示出来.
交叉连接:cross join
一般不使用 select * from xs cross join xs_kc; 等价于 select * from xs,xs_kc;
去重复:distinct
select distinct xs_kc.kc_id ,kc.kc_name
from xs_kc join kc on xs_kc.kc_id = kc.kc_id;
结果:
101 计算机基础
102 程序设计及语言
206 离散数学
去重复可以显示多个字段,如果用group by 进行分组的话,只能使用分组的字段;
替换查询结果中的数据
select xs.xs_id as '学号' ,xs.xs_name as '姓名',xs.xs_xf as '学分' ,
case
when xs.xs_xf is null then '未选课'
when xs.xs_xf < 50 then '不及格'
when xs.xs_xf >= 50 and xs.xs_xf <=52 then '合格'
else '优秀'
end
as '等级'
from xs where xs.xs_zy='计算机';
注意:多个case end之间要加逗号;
触发器:
在插入,更新,删除数据时触发某些事件
给XS表设置了触发器,删除后触发
触发事件
delete from xs_kc where xs_id = old.xs_id;
注意:old.xs_id指的xs表中删除那一项的xs_id
给XS表设置了触发器,插入时触发,
触发事件
insert into xs_kc(xs_id,kc_id) values(new.xs_id,101)
注意:new.xs_id : 指xs表中生成的那个xs_id;
数据的拷贝
create table xs_copy as (select * from xs) 数据的备份
create table xs_copy2 as (select * from xs where 1 = 2)
create table xs_copy3 as (select * from xs where 1 = 1)