Oracle面试题及答案整理.docx

6 下载量 144 浏览量 更新于2023-11-24 收藏 26KB DOCX 举报
《Oracle面试题及答案整理》是一份包含了Oracle面试题及答案的资料,用于参考和学习。该资料包含了三个题目和对应的解答,涉及到了SQL语句的使用和员工表的操作。 第一个题目是关于表table1的操作,要求列出各班成绩最高的列表。解答是使用SQL语句select fclass,max(fscore) from table1 group by fclass,fid来实现。 第二个题目是要求列出表table1中一个FID对应多个不同Fno的记录。解答是使用SQL语句select t2.* from table1 t1, table1 t2 where t1.fid = t2.fid and t1.fno <> t2.fno来实现。 第三个题目是针对员工表empinfo的操作,要求计算四种类型员工的数量。解答是使用SQL语句select sum(case when fsalary > 9999 and fage > 35 then 1 else 0 end) as type1_count, sum(case when fsalary > 9999 and fage < 35 then 1 else 0 end) as type2_count, sum(case when fsalary < 9999 and fage > 35 then 1 else 0 end) as type3_count, sum(case when fsalary < 9999 and fage < 35 then 1 else 0 end) as type4_count from empinfo来实现。 总的来说,《Oracle面试题及答案整理》包含了常见的Oracle面试题及对应的解答,是一份很有参考价值的资料。