欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

MySQL数据库中视图与索引

程序员文章站 2022-03-03 20:00:49
...

视图:
视图本质就是对查询的封装,定义视图,建议以v_开头
格式:create view 视图名称 as select语句;

例:创建视图,查询学生对应的成绩信息

create view v_stu_score_course as
select
stu.*,cs.courseNo,cs.name courseName,sc.score
from
students stu
inner join scores sc on stu.studentNo = sc.studentNo
inner join courses cs on cs.courseNo = sc.courseNo

查看视图:查看表会将所有的视图也列出来
show tables;

删除视图
drop view 视图名称;
例:
drop view v_stu_score_course;

使用:视图的用途就是查询
select * from v_stu_score_course;

索引:
primary key
unique
key (字段名)

查看索引:
– show index from 表名;

创建索引:
方式一:建表时创建索引

create table create_index(
id int primary key,
name varchar(10) unique,
age int,
key (age)
);

方式二:对于已经存在的表,添加索引
如果指定字段是字符串,需要指定长度,建议长度与定义字段时的长度一致
字段类型如果不是字符串,可以不填写长度部分
create index 索引名称 on 表名(字段名称(长度))
例:
create index age_index on create_index(age);
create index name_index on create_index(name(10));

删除索引:
drop index 索引名称 on 表名;