0
votes
3answers
61 views
PHP, MySQL - would results-array shuffle be quicker than “select… order by rand()”?
I've been reading a lot about the disadvantages of using "order by rand" so I don't need update on that.
I was thinking, since I only need a limited amount of rows retrieved from the db to be …
2
votes
5answers
106 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 …
0
votes
1answer
78 views
How can I randomize DataMapper collection and convert it to JSON?
Hi,
I'm pulling my hair out trying to build a little random photo JSON feed using DataMapper/Sinatra. Here's what I have so far..
Photo.favorites.to_json(:methods => [:foo, :bar])
So that works …
0
votes
5answers
165 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() RETURNS float AS
…
2
votes
6answers
442 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 …
0
votes
3answers
98 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 random and return that …
3
votes
5answers
138 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
287 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:
…
0
votes
3answers
243 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 getme only numbers …
20
votes
12answers
4k views
How to request a random row in SQL?
What is the best way to request a random row in pure SQL?
2
votes
6answers
335 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
3answers
234 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. …
8
votes
10answers
2k 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 …
3
votes
7answers
313 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 …
1
vote
2answers
62 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 + …
