题目内容

下列关于视图的描述哪个是错误的( )。

A. 视图是由SELECT子查询语句定义的一个逻辑表
B. 视图中保存有数据
C. 通过视图操作的数据仍然保存在表中
D. 可以通过视图操作数据库中的数据

查看答案
更多问题

下列操作权限中,在视图上不具备的是( )。

A. SELECT
B. ALTER
C. DELETE
D. INSERT

在同样的条件下,下面的哪个操作得到的结果集有可能最多?( )

A. 内连接
B. 左外连接
C. 右外连接
D. 完全外连接

列出薪水高于所在部门平均工资的员工信息( )。

A. select deptno,ename,sal from emp a where sal>(select avg(a.sal) from emp where deptno=a.deptno);
B. select deptno,ename,sal from emp a where sal>(select avg(sal) from emp where deptno=a.deptno);
C. select a.deptno,a.ename,a.sal from emp a,emp b where a.deptno=b.deptno and a.sal>avg(b.sal);
D. select a.deptno,a.ename,a.sal from emp a,emp b where a.deptno=b.deptno and b.sal>avg(a.sal);

列出没有职工的部门( )。

A. select dept.deptno from emp,deptwhere emp.deptno(+)=dept.deptnoand emp.deptno is null;
B. select dept.deptno from emp,deptwhere emp.deptno(+)=dept.deptnoand dept.deptno is null;
C. select dept.deptno from emp,deptwhere emp.deptno(+)=dept.deptnoand emp.deptno=null;
D. select dept.deptno from emp,deptwhere emp.deptno=dept.deptno(+)and dept.deptno is null;

答案查题题库