IS TABLE OF :指定是一个集合的表的数组类型,简单的来说就是一个可以存储一列多行的数据类型。 INDEX BY BINARY_INTEGER:指索引组织类型 BULK COLLECT :指是一个成批聚合类型,简单的来说 , 它可以存储一个多行多列存储类型,采用BULK COLLECT可以将 ...
分类:
数据库 时间:
2018-05-18 15:47:35
阅读次数:
218
View the Exhibit to see the data in the emp table. You created a PRIMARY KEY constraint on the empno column of the emp table, and the constraint is no ...
分类:
其他好文 时间:
2018-03-21 13:49:26
阅读次数:
133
The user HR owns the EMP table. The user HR grants privileges to the user SCOTT by using this command:SQL> GRANT SELECT,INSERT,UPDATE ON emp TO scott ...
分类:
其他好文 时间:
2017-12-14 15:52:59
阅读次数:
147
There is a table courses with columns: student and class Please list out all classes which have more than or equal to 5 students. For example, the tab ...
分类:
其他好文 时间:
2017-10-24 11:53:07
阅读次数:
146
1. 基本select语句 1)查看当前用户 show user USER 为 "SCOTT" 2)查询当前用户下的表 SQL> select * from tab; TNAME TABTYPE CLUSTERID DEPT TABLE EMP TABLE BONUS TABLE SALGRADE ...
分类:
数据库 时间:
2017-09-12 19:07:35
阅读次数:
231
针对多行单列的数据处理,用之前的标量变量肯定不行,这里引入一个新的数据类型复合数据类型。这个复合类型类似于语言的数组struct[i],包括索引表,嵌套表,边长数组三种类型,一、索引表称为PLSQL的表,下标与数组比较可以为负数,下标个数没有限制,这个只能用在数据类型,..
分类:
数据库 时间:
2017-08-04 10:59:42
阅读次数:
226
QUESTION NO: 35?
The ADMIN_EMP table has columns EMPNO, ENAME, DEPTNO, and SAL. It has a materialized view
EMP_MV with a materialized log and an ENAME_IDX index on the ENAME column. You need to perfo...
分类:
其他好文 时间:
2015-10-02 17:28:17
阅读次数:
140
You execute the following FLASHBACK TABLE command:
Which two statements are correct?(Choose two.)A.The EMP table that was dropped by mistake earlier is restored.B.The FLASHBACK TABLE statement is execu...
分类:
其他好文 时间:
2015-09-21 17:57:05
阅读次数:
141
61. View the Exhibit.Which statement regarding the dept and emp tables is true?A) When you delete a row from the emp table, you would receive a constr...
分类:
其他好文 时间:
2015-02-27 16:53:58
阅读次数:
327
在 oracle sql 查询中,oracle 提供了一些高级功能能够简化 sql 查询语句以及提高查询性能。下面将介绍 rollup,cube的用法与区别。
rollup
首先构造两个基本表 emp(员工表) 与 dept(部门表):
SQL> create table emp as select * from scott.emp;
Table created.
SQL> cr...
分类:
数据库 时间:
2015-01-07 22:10:02
阅读次数:
411