How to limit oracle table search?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • venkata ramani
    New Member
    • Oct 2011
    • 1

    How to limit oracle table search?

    when i put a query like select * from my table it will be running/scrolling continuously as there are many records in the table but I want to stop it and see the data in the table for limited records. what is the query ? and how can stop scollin
  • johny10151981
    Top Contributor
    • Jan 2010
    • 1059

    #2
    this link must have to help you
    Last edited by Niheel; Oct 14 '11, 04:51 AM. Reason: Johny, if you can post part of the solution with the link. That would be much more helpful.

    Comment

    • Rabbit
      Recognized Expert MVP
      • Jan 2007
      • 12517

      #3
      Code:
      SELECT *
      FROM someTable
      WHERE ROWNUM < 101

      Comment

      Working...