Tagged Questions

61
votes
19answers
28k views

How to request a random row in SQL?

What is the best way to request a random row in pure SQL?
25
votes
9answers
15k views

Select n random rows from SQL Server table

I've got a SQL Server table with about 50,000 rows in it. I want to select about 5,000 of those rows at random. I've thought of a complicated way, creating a temp table with a "random number" column, ...
12
votes
11answers
5k views

How do I return random numbers as a column in SQL Server 2005?

I'm running a SQL query on SQL Server 2005, and in addition to 2 columns being queried from the database, I'd also like to return 1 column of random numbers along with them. I tried this: select ...
11
votes
3answers
4k views

(PostgreSQL) random number range 1 - 10

since my approach for a test query which I worked on in this question did not work out I'm trying something else now. Is there a wayto tell pg's random() function to getme only numbers between 1 and ...
10
votes
18answers
4k views

quick selection of a random row from a large table in mysql

What is a fast way to select a random row from a large mysql table? I'm working in php, but I'm interested in any solution even if it's in another language.
9
votes
8answers
5k views

How to randomly select rows in SQL?

In my db, I have a table "customerNames" which has two columns "Id" and "Name" and approx. 1,000 results. I am creating a functionality where I have to pick up the 5 customers randomly every time. Can ...
7
votes
6answers
4k views

Generating random strings with T-SQL

If you wanted to generate a pseudorandom alphanumeric string using T-SQL, how would you do it? How would you exclude characters like dollar signs, dashes, and slashes from it?
6
votes
2answers
2k views

MySQL: Alternatives to ORDER BY RAND()

I've read about a few alternatives to MySQL's ORDER BY RAND() function, but most of the alternatives apply only to where on a single random result is needed. Does anyone have any idea how to ...
6
votes
7answers
895 views

T-SQL equivalent of =rand()

I have several content tables that I want to fill up with random paragraphs of text. In MS Word, I can simply put =rand() and presto! I get three paragraphs of fresh-off-the-press text. Is there a ...
6
votes
8answers
4k views

Pseudo Random Sort in MS SQL (not NEWID() and not RAND())

I would like to randomly sort a result in a repeatable fashion for purposes such as paging. For this NEWID() is too random in that the same results cannot be re-obtained. Order by Rand(seed) would ...
6
votes
3answers
3k views

Simple Random Samples from a (My)Sql database

How do I take an efficient simple random sample in SQL? The database in question is running MySQL; my table is at least 200,000 rows, and I want a simple random sample of about 10,000. The "obvious" ...
4
votes
1answer
220 views

Using random value as join condition

I am generating some test-data and use dbms_random. I encountered some strange behavior when using dbms_random in the condition of the JOIN, that I can not explain: ------------------------# ...
4
votes
6answers
3k views

How can I insert random values into a SQL Server table?

I'm trying to randomly insert values from a list of pre-defined values into a table for testing. I tried using the solution found on this StackOverflow question: ...
3
votes
5answers
119 views

Random Row in MySQL

I am trying to get a random row in MySQL. Here is my approach: SELECT * FROM users WHERE id = (SELECT floor((max(id) - min(id) + 1) * rand()) + min(id) FROM users); This can return an empty ...
3
votes
3answers
90 views

Weighted randomness. How could I give more weight to rows that have just been added to the database?

I'm retrieving 4 random rows from a table. However, I'd like it such that more weight is given to rows that had just been inserted into the table, without penalizing older rows much. Is there a way ...
3
votes
4answers
108 views

selecting “similar” groups - where to start with probabilities?

Let's say I have a table with 10.000 lines (representing 10.000 persons) and the following columns: id qualification gender age income When I select all persons having a certain ...
3
votes
1answer
352 views

Random values in MySql query with pagination

I have advanced search on my web page, now how this works is as follows. When a search is made, random results appear on the content page, now this page also included pagination, so my problem is ...
3
votes
4answers
136 views

Complex mysql query, please help

I have a table of banners. Banners are marked with size id and slot id(position on page) I need to pick 8 banners of one size, 1 for each slot between 11-18(slot id) and keep randomness each page ...
3
votes
1answer
207 views

Join a single row in one table to n random rows in another

Is it possible to make a join in SQL server that joins each row from table A to n random rows in another? For example, say I have a Customer table, a Product table and an Order table. I want to join ...
3
votes
4answers
3k views

Hibernate Criteria API: get n random rows

I can't figure out how to fetch n random rows from a criteria instance: Criteria criteria = session.createCriteria(Table.class); criteria.add(Restrictions.eq('fieldVariable', anyValue)); ... Then ...
3
votes
5answers
757 views

Optimizing my mysql statement! - RAND() TOO SLOW

So I have a table with over 80,000 records, this one is called system. I also have another table called follows. I need my statement to randomly select records from the system table, where that id is ...
3
votes
3answers
894 views

SQL : select one row randomly, but taking into account a weight

I'm using MySQL. I have a table which looks like that: id: primary key content: varchar weight: int What I want to do is randomly select one row from this table, but taking into account the weight. ...
3
votes
3answers
3k views

Select random sampling from sqlserver quickly

I have a huge table of > 10 million rows. I need to efficiently grab a random sampling of 5000 from it. I have some constriants that reduces the total rows I am looking for to like 9 millon. I tried ...
2
votes
2answers
57 views

SQL Join help when selecting random row

I have 2 tables; 'groups' and 'values'. I am trying to select one random row from the values table, where values.groupid = groups.id The query I have is: SELECT * FROM groups as g inner JOIN ( ...
2
votes
3answers
61 views

database for random selection

I wanted to be able to randomly select rows from a table in a way that scales up to large tables in MySQL. As I understand it now that really isn't possible. Are there any other databases that I ...
2
votes
1answer
66 views

Is there a way to generate random number in mysql and append on a string?

so in an update statement update contacts set email = 'na@na' + random_number(1-1000) + '.com' where email = ''; can i do a query like this. I want to generate a number 1 - 1000 and append to the ...
2
votes
2answers
233 views

Using subquery to pull random value reveals same value every time

I want to add a random value to a column in a query using T-SQL for Microsoft SQL Server 2010. To do this, I use a subquery and pull a random record. Every time I run the query, it pulls a new random ...
2
votes
1answer
159 views

2 Unique RAND() items from database

At present im using: SELECT * from foo ORDER BY RAND() LIMIT 2 to select 2 random items from database but there is the possiblily of the result both being the same item so how can i make it so they ...
2
votes
1answer
140 views

Optimized way to get x Random rows satisfying given criteria in MySQL

I need to get x rows from a Database Table which satisfy some given criteria. I know that we can get random rows from MySQL using ORDER BY RAND (). SELECT * FROM 'vids' WHERE 'cat'=n ORDER BY RAND() ...
2
votes
1answer
59 views

MYSQL Random Row/Ordering question

I am trying to select the three rows that have the highest scores. Obviously I can use a simple things such as: SELECT * FROM myTable ORDER BY myscore DESC LIMIT 3; But what I also want is an easy ...
2
votes
1answer
95 views

How to select random trial with sql? (Bernoulli Trial)

For each parent that exists I would like to select 1 child row randomly. The table structure looks like this: parent id child parent_id id rank where there are 1..N child records for ...
2
votes
4answers
255 views

Power-law distribution in T-SQL

I basically need the answer to this SO question that provides a power-law distribution, translated to T-SQL for me. I want to pull a last name, one at a time, from a census provided table of names. ...
2
votes
3answers
218 views

Add a random number between 30 and 300 to an existing field

I have looked on the net as well as here but can't find an answer to the following MySQL question. I'm looking to replace the value of an existing field with a query that has a random number between ...
2
votes
1answer
88 views

CRYPT_GEN_RANDOM strange effects

I want to randomly choose a value from a small range of integers (less than 200). As an alternative to SELECT RAND() I'm trying to use CAST(CAST(CRYPT_GEN_RANDOM(2) AS INTEGER) AS FLOAT) / 65535 ...
2
votes
7answers
175 views

Show item of the day

I am looking to create a function that gets me a random item from a mySQL table, but let's me keep the returned as the "item of the day". In other words, the item that was "the item of the day" ...
2
votes
6answers
229 views

Random select is not always returning a single row

The intention of following (simplified) code fragment is to return one random row. Unfortunatly, when we run this fragment in the query analyzer, it returns between zero and three results. As our ...
2
votes
2answers
516 views

Select random line in SQL database

I would like to select a random line in my database. I saw this solution on a website: SELECT column FROM table ORDER BY RAND() LIMIT 1 This SQL query run but someone said me that it was a non ...
2
votes
3answers
1k views

TSQL Pseudo Random text generator

I am doing some performance testing on a SQL sproc and just want to bang out a quick data generator for testing. I am after a simple way to generate a pseudo random (true random not needed in this ...
2
votes
6answers
504 views

Replacing sequence with random number

I would like to replace some of the sequences I use for id's in my postgresql db with my own custom made id generator. The generator would produce a random number with a checkdigit at the end. So ...
2
votes
6answers
2k views

TSQL Generate 5 character length string, all digits [0-9] that doesn't already exist in database

What's the best way to do this? I need to generate a 5 digit length string where all the characters are numeric. However, I need to be able to do this 'x' amount of times (user variable) and store ...
2
votes
4answers
1k views

Difference between two queries when selecting a random sample from oracle

This question answers the question on how to select a random sample from oracle which is exactly what I need. I do not understand however the difference between that solution SELECT * FROM ( ...
2
votes
4answers
468 views

Random numbers from database [closed]

EDIT: Duplicate of http://stackoverflow.com/questions/94906/how-do-i-return-random-numbers-as-a-column-in-sql-server-2005 Hello How can I generate random numbers in mssql server 2005. for example: ...
2
votes
2answers
3k views

How to select N random rows using pure SQL?

How do we combine http://stackoverflow.com/questions/19412/how-to-request-a-random-row-in-sql and http://stackoverflow.com/questions/183124/multiple-random-values-in-sql-server-2005 to select N random ...
2
votes
2answers
859 views

Multiple random values in SQL Server 2005

I need to generate multiple random values under SQL Server 2005 and somehow this simply wont work with Random(Value) as ( select rand() Value union all select rand() from Random )select ...
1
vote
2answers
47 views

MS Access SQL, Rnd Function without numeric field

Is it possible in a Microsoft Access query to use the Rnd() Function without specifying a numeric column (e.g. when my Primary Key contains Alpha characters) and still generate a different random ...
1
vote
4answers
68 views

postgres: get random entries from table - too slow

In my postgres database, I have the following relationships (simplified for the sake of this question): Objects (currently has about 250,000 records) ------- n_id n_store_object_id (references ...
1
vote
1answer
61 views

using RAND() in a function [closed]

Possible Duplicate: Creating Nondeterministic functions in SQL Server using RAND() I need to generate some random nvarchar in a function. So I create this function : CREATE FUNCTION ...
1
vote
2answers
73 views

SQL - extract random sample from joined tables

I've to fill an empty table (TAB_A) with random records (5%) from TAB_B, joined with other 3 tables (C1, C2, C3). Now, if I run the following query everything works well: INSERT INTO TAB_A ...
1
vote
3answers
52 views

How to choose one featured row at a time?

I have a mySQL table "classifieds", which is not well designed, I know. It has the following fields: id=A_I pk, title, desc, ........., other fields, featured = int(1) (1 or 0) but can be ...
1
vote
2answers
98 views

SQL Result Random loop through

I have a SQL database that contains a field. I can get all of the elements in that field by: $result=mysql_query($sql); while($row=mysql_fetch_array($result)){ $ftype ...

1 2 3