SitePoint Sponsor

User Tag List

Results 1 to 5 of 5

Thread: How can I get a random record from my oracle table?

  1. #1
    SitePoint Guru Angry Coder's Avatar
    Join Date
    May 2002
    Location
    Canada
    Posts
    601
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Question How can I get a random record from my oracle table?

    Hello,

    The title says it!

    Many thanks...
    Why It Doesn't Work?!

  2. #2
    SQL Consultant silver trophybronze trophy
    SitePoint Award Recipient r937's Avatar
    Join Date
    Jul 2002
    Location
    Toronto, Canada
    Posts
    38,457
    Mentioned
    34 Post(s)
    Tagged
    1 Thread(s)
    select * from t where rownum=1 order by dbms_random.value

    or something like that
    r937.com | rudy.ca | Buy my SitePoint book: Simply SQL
    "giving out my real stuffs"

  3. #3
    SitePoint Guru Angry Coder's Avatar
    Join Date
    May 2002
    Location
    Canada
    Posts
    601
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Exclamation

    Thanks but the following didn't work for me:

    Code:
    select TEXT AS PROMOWORD from PROMO_WORDS where rownum=1 order by dbms_random.value
    I am getting the last row in the table!

    Please advise.
    Why It Doesn't Work?!

  4. #4
    SQL Consultant silver trophybronze trophy
    SitePoint Award Recipient r937's Avatar
    Join Date
    Jul 2002
    Location
    Toronto, Canada
    Posts
    38,457
    Mentioned
    34 Post(s)
    Tagged
    1 Thread(s)
    i wish i had oracle to test this out for you

    well, if no one else jumps into this thread, i'm afraid you have no choice but to visit google with phrases like "random row +oracle" or "dbms_random.value +oracle"

    sorry
    r937.com | rudy.ca | Buy my SitePoint book: Simply SQL
    "giving out my real stuffs"

  5. #5
    chown linux:users\ /world Hartmann's Avatar
    Join Date
    Aug 2000
    Location
    Houston, TX, USA
    Posts
    6,455
    Mentioned
    5 Post(s)
    Tagged
    0 Thread(s)
    Try using dbms_random.random

    What version of Oracle are you running?

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •