`

QUESTIONS

阅读更多

问题一:获取SCOTT用户中EMP表里最早入职的前五名雇员?

 

SQL> select top 5 * from emp order by hiredate asc;

 SQL Server中的写法,不适用于Oracle数据库。


下面也是错误的写法

 

SQL> select rownum,empno,ename,hiredate from emp
  2  where rownum<6 
  3  order by hiredate asc;

 正确的写法:

使用了内嵌视图,构造中间的临时查询结果,在这个结果基础上,使用rownum处理

 

 1  select empno,ename,hiredate from (select empno,ename,hiredate from emp
  2  order by hiredate asc)
  3* where rownum<6
SQL> /

 问题二:获取SCOTT用户中EMP表里最早入职的 第 五 名 雇员?

 

1  select empno,ename,hiredate from
  2  (select empno,ename,hiredate from
  3  (select empno,ename,hiredate from (select empno,ename,hiredate from emp
  4  order by hiredate asc)
  5  where rownum<6)  order by hiredate desc)
  6* where rownum<2
SQL> /
分享到:
评论
发表评论

文章已被作者锁定,不允许评论。

相关推荐

    问题背后的问题(Questions Behind Questions)

    ### 问题背后的问题(Questions Behind Questions) #### 描述 “问题背后的问题”(Questions Behind Questions, QBQ)是一种思考方式,它鼓励人们透过表象,探索更深层次的问题所在,以此来提高工作效率和个人...

    Plane answers to complex questions, 3 edition

    Plane answers to complex questions-The Theory of Linear Models, by Ronald Christensen. The 3 edition.

    Coding.Interview.Questions.3rd.Edition.epub )

    "Coding Interview Questions" is a book that presents interview questions in simple and straightforward manner with a clear-cut explanation. This book will provide an introduction to the basics. It ...

    Ask questions Get sales

    "Ask questions Get sales"这个主题强调了通过有效提问来推动交易完成以及建立长期客户关系的重要性。这不仅是一种销售技巧,更是一种深度理解客户需求、提供定制化解决方案和建立信任关系的艺术。 一、提问的重要...

    quora_duplicate_questions

    为了促进自然语言处理(NLP)领域的发展,特别是针对语义相似性的研究,Quora发布了“quora_duplicate_questions”数据集。这个数据集包含了成对的问题,目的是帮助研究人员和开发者评估和改进算法,以识别出那些...

    Data Structures & Algorithms Interview Questions You'll Most Likely Be epub

    Data Structures & Algorithms Interview Questions You'll Most Likely Be Asked 英文epub 本资源转载自网络,如有侵权,请联系上传者或csdn删除 查看此书详细信息请在美国亚马逊官网搜索此书

    Algorithm-data-structures-questions.zip

    在"Algorithm-data-structures-questions.zip"的"data-structures-questions-master"文件中,可能包含了关于算法与数据结构的各种练习和问题,旨在帮助学习者深入理解和掌握这些概念。通过解决这些问题,你可以提升...

    120 questions for DS interview

    这份名为“120 questions for DS interview”的文档整理了一系列数据科学面试中可能会遇到的问题,覆盖产品指标、编程和数据库、概率论、实验设计与推理、数据分析以及预测建模等领域。文档由Carson Shan、Max Song...

    The_0x10_Best_Questions_for_Would-be_Embedded_Programmers

    Nigel Jones 在《Embedded Systems Programming》杂志2000年5月刊中发表了一篇文章,名为“A ‘C’ Test: The 0x10 Best Questions for Would-be Embedded Programmers”,该文章精选了十个关键问题,旨在帮助招聘者...

    Grokking the Coding Interview - Patterns for Coding Questions.zip

    《Grokking the Coding Interview - Patterns for Coding Questions》是一份专为北美算法面试准备的压缩包资源,其中包含了多种常见的编程题目模式。这份资源旨在帮助面试者熟练掌握各种算法和数据结构,以便在面试...

    sap-basis-certification-questions-sap-basis-interview-questions-answers-and-explanations

    SAP Basis Interview Questions 在进行 SAP Basis 的面试准备时,面试官通常会关注应聘者对 SAP Basis 的基础知识和实践经验的理解。例如: - **问题示例**:“请简要介绍 SAP Basis 并解释它的主要功能。” - **...

    oracle-interview-questions

    ### Oracle Interview Questions详解 #### 一、Co-related Subquery与Nested Subquery的区别 **知识点:** - **Co-related Subquery(关联子查询)**: 在这种类型的子查询中,内部查询只执行一次,并根据该结果来...

    Asking the Right Questions, A Guide to Critical Thinking, 8th Ed

    根据提供的文件信息,“Asking the Right Questions, A Guide to Critical Thinking, 8th Ed”这本书由M. Neil Browne和Stuart M. Keeley共同编写,是关于批判性思维的一本指南。本书主要目的是帮助读者学会如何提出...

    Java Interview Questions updated on Sep 2018

    ### Java Interview Questions 更新于2018年9月 #### 1. 什么是JVM? JVM(Java虚拟机)是运行Java应用程序所必需的解释器及其运行时环境的组合。它提供了一个运行Java字节码的标准平台,使得Java程序可以在任何...

    CISSP Real Exam Questions &amp;amp; Answers - PDF.zip

    这个压缩包文件"CISSP Real Exam Questions &amp;amp; Answers - PDF.zip"显然包含了与CISSP认证考试相关的实际试题和答案,可能是考生备考的重要参考资料。 CISSP认证考试旨在测试候选人在以下8个知识域的能力: ...

    Java Interview Notes_ 700 Java Interview Questions Answered.pdf

    根据提供的文件信息,这份《Java Interview Notes_ 700 Java Interview Questions Answered.pdf》的文档内容非常丰富,涵盖了Java编程语言面试时可能遇到的多个核心知识点。下面是根据标题和描述生成的知识点详细...

Global site tag (gtag.js) - Google Analytics