Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6865687
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T03:05:06+00:00 2026-05-27T03:05:06+00:00

I need to generate a random number of non duplicated random number in plpgsql.

  • 0

I need to generate a random number of non duplicated random number in plpgsql. The non duplicated number shall fall in the range of [1,1001]. However, the code generates number exceeding 1001.

directed2number := trunc(Random()*7+1);
counter := directed2number
while counter > 0
loop
to_point := trunc((random() * 1/directed2number - counter/directed2number + 1) * 1001 +1);
...
...
counter := counter - 1;
end loop;
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T03:05:07+00:00Added an answer on May 27, 2026 at 3:05 am

    If I understand right

    • You need a random number (1 to 8) of random numbers.
    • The random numbers span 1 to 1001.
    • The random numbers need to be unique. None shall appear more than once.
    CREATE OR REPLACE FUNCTION x.unique_rand_1001()
    RETURNS SETOF integer AS
    $body$
    DECLARE
        nrnr    int := trunc(random()*7+1);  -- number of numbers
    BEGIN
    
        RETURN QUERY
        SELECT (1000 * random())::integer + 1
        FROM   generate_series(1, nrnr*2)
        GROUP  BY 1
        LIMIT  nrnr;
    
    END;
    $body$ LANGUAGE plpgsql VOLATILE;
    

    Call:

    SELECT x.unique_rand_1001();
    

    Numbers are made unique by the GROUP BY. I generate twice as many numbers as needed to provide enough numbers in case duplicates are removed. With the given dimensions of the task (max. 8 of 1001 numbers) it is astronomically unlikely that not enough numbers remain. Worst case scenario: viewer numbers are returned.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

A specific example I need to generate a random number between 0 and 2,
I need to generate a random port number between 2000-65000 from a shell script.
I need to generate a random number from 1 to 5 which isn't already
I need to generate a random number. But the twist is that the %
Hi I need to generate a random number in JavaScript between 15 and 225
I know how to generate a single random number within a given range, a
Possible Duplicate: Java: generating random number in a range How do I generate a
Possible Duplicate: Secure random number generation in PHP We need to generate a cryptographically
I need to be able to generate a single random number and then use
I am developing a program in which I need to generate a random number

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.