代码拉取完成,页面将自动刷新
1、创建表的同时创建索引:
create table 表名(
字段名1 数据类型[约束条件],
...
[其他约束条件],
[unique|fulltext] index [索引名](字段名[(长度)])
);
2、在已有表上创建索引:
create [unique|fulltext] index 索引名 on 表名 (字段名[(长度)]);
create table stu select * from student;
create unique index ix_stuno on stu(student_no);#多了一个pri主键索引;
show index from stu\G #按列显示
3、查看索引:
show index from 表名\G
4、删除索引:
drop index 索引名 on 表名;
5、创建视图:
create view 视图名[(视图字段列表)]
as
select语句;
create view vw_stu(学号,姓名,联系方式)
as
select student_no,student_name,student_contact from stu;
insert into vw_stu values('2023007','小白','2220000007');
update vw_stu set 姓名='大白' where 学号='2023007';
#修改字段中的名称
ALTER TABLE student CHANGE student_conatact student_contact char(20);
#创建连接表的视图:
create table cls select * from classes;
create view vw_stu2
as
select s.student_no,s.student_name,c.class_name
from student s,classes c
where c.class_no = s.class_no;
insert into vw_stu2 values('2023001','三张','2023自动化2班');
delete from vw_stu2 where student_no='2023004';
update vw_stu2 set class_name='2023机械1班' where student_no = '2023003';
6、查看视图:
desc 视图名;
information_schema的views表存储了所有视图的定义
select * from information_schema.views\G;
7、删除视图:
drop view vw_stu;
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。