20
votes
12answers
3k views
How to request a random row in SQL?
What is the best way to request a random row in pure SQL?
7
votes
10answers
1k 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 …
6
votes
8answers
564 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 …
4
votes
11answers
1k 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.
3
votes
5answers
127 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
6answers
251 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
7answers
296 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 …
3
votes
8answers
1k views
Pseudo Random in MS SQL (not NEWID() and not RAND())
I would like to randomly sort a result in a repeatable fashion. For this NEWID() is too random in that the same results cannot be re-obtained. Ideally order by Rand(seed) would be great since with …
3
votes
3answers
955 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" …
2
votes
5answers
100 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
402 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
3answers
216 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. …
2
votes
6answers
303 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?
2
votes
4answers
343 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 (
…
1
vote
2answers
60 views
Randomize Time Portion of Date Field
What is the best way to randomize the time part for a DATE column, using Oracle 10g?
For example, the date portion for the data was set as follows:
UPDATE table_name SET column_ts = SYSDATE - 120 + …
