Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: PAJam
  • Order by date
  1. PAJam

    How to get n Random records from a Table?

    In the interest of preserving performance try this: select * from emp where rownum<11 order by dbms_random.random; This is using Shahzad excellent suggestion but his query subqueries to the same table; which is scary if the table is large. I tested this on a table with an ID column and the...

Part and Inventory Search

Back
Top