时间:2021-07-01 10:21:17 帮助过:32人阅读
索引
1 --作用:提升查询效率 2 --使用索引: 3 --创建 4 create index 索引名 on 表名(字段名) 5 --删除索引 6 drop index 索引名 7 --特点: 8 --显示的创建,隐式的执行 9 --注意: 10 --oracle会自动给表的主键创建索引。 11 12 create index index_teacher_tname on teacher(tname)--创建索引 13 drop index index_teacher_tname--删除索引 14 select * from teacher where tname=‘张三‘ 15 select * from teacher where tid=8View Code
视图
1 --视图学习: 2 --使用视图: 3 --创建视图 4 create view 视图名 as select 对外提供的内容 from 真实表名 5 --删除视图 6 drop view 视图名 7 --视图特点: 8 --特点1:保护真实表,隐藏重要字段的数据。保护数据。 9 --特点2:在视图中的操作会映射执行到真实表中 10 --特点3:可以手动开启只读模式 使用关键字 with read only 11 --注意:视图的创建必须拥有dba权限 12 create view stu as select sno,sname,sage from bjsxt.student 13 create view stu2 as select sno,sname,sage from student with read only 14 drop view stu 15 select * from student 16 select * from stu 17 update stu2 set sname=‘wollo‘ where sno=1 18 grant dba to bjsxtView Code
oracle创建序列&索引&视图
标签:保护 备份 read 其他 oracle学习 rom 定义 nbsp rem