Tagged Questions

2
votes
3answers
51 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 …
0
votes
3answers
84 views

How can I SELECT 16 records at random from a range of rows in MySQL?

I want to display a list of 16 of the most popular items in my database, but I want that list to be different every time. So from say, the top 50 downloaded items, choose 16 at ra …
3
votes
5answers
104 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 tab …
2
votes
6answers
264 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 v …
3
votes
6answers
215 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: stackoverflow.com …
0
votes
4answers
131 views

Is this a good or bad way of generating random numbers for each record?

A colleague of mine discovered a behaviour in SQL Server which I was unaware of. CREATE VIEW dbo.vRandNumber AS SELECT RAND() as RandNumber GO CREATE FUNCTION dbo.RandNumber() RE …
0
votes
3answers
160 views

(PostgreSQL) random number range 1 - 10

Hi all, 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 getm …
2
votes
3answers
185 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 …
2
votes
6answers
229 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?
1
vote
2answers
56 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_t …
19
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?
3
votes
7answers
263 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 …
2
votes
4answers
285 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 SEL …
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 b …
6
votes
8answers
503 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 rand …

1 2 next
15 30 50 per page