标签:bar from 数据 create tno tle 额外 性能 视图
conn scott/tiger; grant insert,update,delete on emp to system; conn system/orcl1234; create or replace VIEW v_emp as select empno,ename,job,hiredate,deptno from scott.emp;
索引
CREATE INDEX idx_ename ON employee (ename, sal DESC);
适当的使用索引可以提高数据检索速度,可以给经常需要进行查询的字段创建索引。
向表中“添加”行或从表中“删除”行时,必须花费额外的时间来更新该表的索引,所以当需要从大表中检索少数几行时创建索引。一般我们认为当任何单个查询要检索的行小于整个表总行数的10%时,索引就非常有用。
表的主键和唯一键将自动创建索引。
标签:bar from 数据 create tno tle 额外 性能 视图
原文地址:http://www.cnblogs.com/zhangzhangY/p/7407393.html