索引
一、创建索引,比如
create index dept_index on dept(dname);
格式:
create index 索引名 on 表名(列名);
二、删除索引,比如
drop index dept_index on dept;
格式:
drop index 索引名 on 表名;
三、查看索引,比如
show index from dept;
格式:
show index from 表名;
视图
一、创建试图,比如
create view e_info as select ename,empno,sal from emp;
格式:
create view 视图名 as 查询语句;
二、删除视图,比如
drop view if exists e_info;
格式:
drop view if exists 视图名;
三、查看视图,比如
select * from e_info;
格式:
select * from 视图名;
三、修改视图,比如
alter view e_info as select ename,sal from emp;
格式:
alter view 视图名 as 查询语句;