--网上有好多这套题的答案,但是经过我的验证,有很多都是错的,误人子弟--这是我自己纠正以后的版本 然后呢如果我写的还有不对的欢迎批评指正!--(1)查询2006年以后(包括2006年)的投稿情况,列出作者名.期刊名.文章名称和投稿日期. select zzm,qkm,wzmc,tgrq from tgb,qkb,zzb ) --(2)查询姓哪个姓的作者最多,列出这个姓氏和姓这个姓氏的作者人数,包含并列的情况. ) xingshi,count(*) num from zzb WHERE zzh
部门表(SM_DEPT) 字段名称 数据类型 是否主键 注释 DEPT_ID NUMBER Y 部门ID PARENT_DEPARTMENT_ID NUMBER N 上级部门 DEPARTMENT_NAME VARCHAR2(50) N 部门名称 用户部门中间表(SM_USER_DEPT) 字段名称 数据类型 是否主键 注释 ID NUMBER Y 主键 DEPT_ID NUMBER N 部门ID USER_ID NUMBER N 用户ID 用户表(SM_USER) 字段名称 数据类型 是否主键
32. Examine these commands and their output: • SQL> SELECT * FROM emp; • ENO ENAME • ---- ----- • 100 Adam • 101 Alan • SQL> INSERT INTO emp VALUES(102,'Ben"); • 1 row created. • SQL> COMMIT; • Commit completed. • SQL> UPDATE emp SET enam
1.查找最晚入职员工的所有信息 select * from employees order by hire_date desc limit 1; --limit n表示输出前n条数据,limit 0,n表示输出从第1行开始,共n行. select * from employees where hire_date=(select max(hire_date) from employees); 2.查找入职员工时间排名倒数第三的员工所有信息 ,; 3.查找各个部门当前(to_date='99
31.Which two events always request the LGWR to write? A) when LGWR is notified by a server process that performs a Commit or ROLLBACK B) When PMON restarts a server process C) when DBWn writes dirty buffers D) when a log switch occurs E) when a check
30.Which is true when a database instance is shut down? A. Only transactional and normal modes wait for all uncommitted transactions to commit or rollback and then close the database. B. Immediate, transactional, and normal modes all result in a chec
23.Which two are true about data dictionary and dynamic performance views (v$ views)? A) All database users have access to ALL_* views. B) Data dictionary view output is subject to read consistency. C) The defining queries for Oracle supplied dynamic
22.You are planning a software installation for both Oracle Database 11g Release 1 and Release 2. You plan to have at lease one database for each release managed by Grid Infrastructure for a Standalone Server. Which three are true in this scenario? A
21.Which two are true about roles? A) A role can be password-protected. B) A role can be granted to another role. C) Only one default role can be granted to a user. D) A role can be granted only multiple system privileges not multiple object privileg
13.Which two are true about AWR snapshots? A) They are stored In the SYSAUX tablespace. B) They are not generated if STATISTICS_LEVEL Is set to TYPICAL. C) They can be modified by using DMLs. D) They can be retained forever. E) They are always create
11.Which three are true about UNDO data? A) It is used to roll back failed transactions. B) It is used to rewind a database by using FLASHBACK DATABASE. C) It is used to recover dropped tables by using FLASHBACK TABLE … TO BEFORE DROP. D) It is used