active questions tagged random+sql - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T02:54:59Zhttp://stackoverflow.com/feeds/tag/random+sqlhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1687307/replacing-sequence-with-random-number2Replacing sequence with random numberUlfR2009-11-06T12:35:54Z2009-11-14T16:29:28Z
<p>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 this:</p>
<pre><code>SELECT nextval('customers')
</code></pre>
<p>would be replaced by something like this:</p>
<pre><code>SELECT get_new_rand_id('customer')
</code></pre>
<p>The function would then return a numerical value such as: <code>[1-9][0-9]{9}</code> where the last digit is a checksum.</p>
<p>The concerns I have is:</p>
<ol>
<li>How do I make the thing atomic</li>
<li>How do I avoid returning the same id twice (this would be caught by trying to insert it into a column with unique constraint but then its to late to I think)</li>
<li>Is this a good idea at all?</li>
</ol>
<p><strong>Note1</strong>: I do not want to use uuid since it is to be communicated with customers and 10 digits is far simpler to communicate than the 36 character uuid.</p>
<p><strong>Note2</strong>: The function would rarely be called with <code>SELECT get_new_rand_id()</code> but would be assigned as default value on the id-column instead of <code>nextval()</code>.</p>
<p><strong>EDIT</strong>: Ok, good discussusion below! Here are some explanation for <em>why</em>:</p>
<ol>
<li><p>So why would I over-comlicate things this way? The purpouse is to hide the primary key from the customers.</p>
<blockquote>
<p>I give each new customer a unique
customerId (generated serial number in
the db). Since I communicate that
number with the customer it is a
fairly simple task for my competitors
to monitor my business (there are
other numbers such as invoice nr and
order nr that have the same
properties). It is this monitoring I
would like to make a little bit
harder (note: not impossible but
harder).</p>
</blockquote></li>
<li><p>Why the check digit?</p>
<blockquote>
<p>Before there was any talk of hiding the serial nr I added a checkdigit to ordernr since there were klumbsy fingers at some points in the production, and my thought was that this would be a good practice to keep in the future.</p>
</blockquote></li>
</ol>
<p>After reading the discussion I can certainly see that my approach is not the best way to solve my problem, but I have no other good idea of how to solve it, so please help me out here.</p>
<ol>
<li>Should I add an extra column where I put the id I expose to the customer and keep the serial as primary key?</li>
<li>How can I generate the id to expose in a sane and efficient way?</li>
<li>Is the checkdigit necessary?</li>
</ol>
http://stackoverflow.com/questions/94906/how-do-i-return-random-numbers-as-a-column-in-sql-server-20057How do I return random numbers as a column in SQL Server 2005?Joshua Carmody2008-09-18T17:50:38Z2009-11-13T20:03:58Z
<p>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:</p>
<pre><code>select column1, column2, floor(rand() * 10000) as column3 from table1
</code></pre>
<p>...which kinda works, but the problem is that this query returns the same random number on every row. It's a different number each time you run the query, but it doesn't vary from row to row. How can I do this and get a new random number for each row?</p>
http://stackoverflow.com/questions/1705973/how-can-i-randomize-datamapper-collection-and-convert-it-to-json0How can I randomize DataMapper collection and convert it to JSON?Zeke2009-11-10T06:20:30Z2009-11-10T19:29:37Z
<p>Hi,</p>
<p>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..</p>
<pre><code>Photo.favorites.to_json(:methods => [:foo, :bar])
</code></pre>
<p>So that works fine. The <code>to_json</code> method is provided in the dm-serializer library. All I want to do is randomize that feed so the photos don't show up in the same order every time. Since DataMapper doesn't have built-in support for random selects, I tried sorting the results, but <code>to_json</code> gets mad because the sort_by turns the DataMapper::Collection into an Array..</p>
<pre><code>Photo.favorites.sort_by{rand}.to_json(:methods => [:foo, :bar])
# wrong argument type Hash (expected Data)
</code></pre>
<p>I searched for that error and saw a lot of Rails-related stuff about ActiveRecord and conflicts between competing <code>to_json</code> methods, but nothing really about DataMapper. A lot of people recommended using <code>json_pure</code> instead of the <code>json</code> gem, so I gave that a try by adding <code>require 'json/pure'</code> to my Sinatra app. Now the query above gives me this error instead..</p>
<pre><code>Photo.favorites.sort_by{rand}.to_json(:methods => [:foo, :bar])
# undefined method `[]' for #<JSON::Pure::Generator::State:0x106499880>
</code></pre>
<p>I also tried doing the randomization with straight SQL:</p>
<pre><code>def self.random
repository(:default).adapter.query('SELECT * FROM photos WHERE favorite = 1 ORDER BY RAND();')
end
</code></pre>
<p>But that doesn't really work for me because it returns Struct objects with attributes, rather than instances of the actual Photo class. This means I can't leverage the handy to_json arguments like <code>:methods</code>.</p>
<p>Lastly I tried using <code>find_by_sql</code>, but I guess the method's been removed from DataMapper?</p>
<pre><code>def self.random
find_by_sql("SELECT * FROM `photos` ORDER BY RAND();")
end
# undefined method `find_by_sql' for Photo:Class
</code></pre>
<p>Sheesh! Any thoughts on how to resolve this?</p>
http://stackoverflow.com/questions/1601509/how-can-i-select-16-records-at-random-from-a-range-of-rows-in-mysql0How can I SELECT 16 records at random from a range of rows in MySQL?Andy E2009-10-21T15:12:13Z2009-10-21T20:08:27Z
<p>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 in the result. Is that possible with just one query?</p>
http://stackoverflow.com/questions/1594483/optimizing-my-mysql-statement-rand-too-slow3Optimizing my mysql statement! - RAND() TOO SLOWBrandon2009-10-20T13:05:03Z2009-10-20T15:03:39Z
<p>So I have a table with over 80,000 records, this one is called system. I also have another table called follows.</p>
<p>I need my statement to randomly select records from the system table, where that id is not already listed within the follows table under the current userid.</p>
<p>So here is what I have:</p>
<pre><code> SELECT system.id,
system.username,
system.password,
system.followed,
system.isvalid,
follows.userid,
follows.systemid
FROM system
LEFT JOIN follows ON system.id = follows.systemid
AND follows.userid = 2
WHERE system.followed = 0
AND system.isvalid = 1
AND follows.systemid IS NULL
ORDER BY RAND()
LIMIT 200
</code></pre>
<p>Now it wotks perfectly, except that it takes about a whole minute before it can even start processing the job at hand with the records it chosen. By this time the script usually times oout and nothing happens.</p>
<p>Can somebody show me how to rework this, so the same idea is done, but it is not using order by rand? This seems to slow things down a whole bunch.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1527938/tsql-generate-5-character-length-string-all-digits-0-9-that-doesnt-already-ex2TSQL Generate 5 character length string, all digits [0-9] that doesn't already exist in database...Brad2009-10-06T20:27:48Z2009-10-08T19:11:25Z
<p>What's the best way to do this?</p>
<p>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 this random strings in a database. Furthermore, I can't generate the same string twice. Old strings will be removed after 6 months.</p>
<p>Pseudo-code</p>
<pre><code>DECLARE @intIterator INT,
@intMax
SET @intIterator = 1
SET @intMax = 5 (number of strings to generate)
WHILE @intIterator <= @intMax
BEGIN
-- GENERATE RANDOM STRING OF 5 NUMERIC DIGITS
???
-- INSERT INTO DB IF DOESN'T ALREADY EXIST
INSERT INTO TSTRINGS
SELECT @RANDOMSTRING
IF @@ERROR = 0
SET @intIterator = @intIterator + 1
END
</code></pre>
<p>I know this probably isn't the best way to do it, so advice is appreciated. But really looking for ideas on how to generate the numeric 5 length strings.</p>
http://stackoverflow.com/questions/458175/pseudo-random-in-ms-sql-not-newid-and-not-rand3Pseudo Random in MS SQL (not NEWID() and not RAND())ccook2009-01-19T16:20:58Z2009-09-24T23:17:02Z
<p>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 the same seed the same random collection would result. But, the Rand resets with every row… anyone have a fix?</p>
<pre><code>declare @seed as int;
set @seed = 1000;
create table temp (
id int,
date datetime)
insert into temp (id, date) values (1,'20090119')
insert into temp (id, date) values (2,'20090118')
insert into temp (id, date) values (3,'20090117')
insert into temp (id, date) values (4,'20090116')
insert into temp (id, date) values (5,'20090115')
insert into temp (id, date) values (6,'20090114')
-- re-seeds for every item
select *, RAND(), RAND(id+@seed) as r from temp order by r
--1 2009-01-19 00:00:00.000 0.277720118060575 0.732224964471124
--2 2009-01-18 00:00:00.000 0.277720118060575 0.732243597442382
--3 2009-01-17 00:00:00.000 0.277720118060575 0.73226223041364
--4 2009-01-16 00:00:00.000 0.277720118060575 0.732280863384898
--5 2009-01-15 00:00:00.000 0.277720118060575 0.732299496356156
--6 2009-01-14 00:00:00.000 0.277720118060575 0.732318129327415
-- Note how the last column is +=~0.00002
drop table temp
-- interestingly this works:
select RAND(@seed), RAND()
--0.732206331499865 0.306382810665955
</code></pre>
<p>Note, I tried Rand(id) but that just turns out to be sorted. Apparently Rand(n) < Rand(n+1)</p>
http://stackoverflow.com/questions/1468159/how-can-i-insert-random-values-into-a-sql-server-table3How can I insert random values into a SQL Server table?Dan Herbert2009-09-23T19:40:24Z2009-09-24T06:23:09Z
<p>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:</p>
<p><a href="http://stackoverflow.com/questions/1289600/update-sql-table-with-random-value-from-other-table"><code>stackoverflow.com/.../update-sql-table-with-random-value-from-other-table</code></a></p>
<p>When I I tried this, all of my "random" values that are inserted are exactly the same for all 3000 records. </p>
<p>When I run the part of the query that actually selects the random row, it does select a random record every time I run it by hand, so I know the query works. My best guesses as to what is happening are:</p>
<ul>
<li>SQL Server is optimizing the <code>SELECT</code> somehow, not allowing the subquery to be evaluated more than once</li>
<li>The random value's seed is the same on every record the query updates</li>
</ul>
<p>I'm stuck on what my options are. Am I doing something wrong, or is there another way I should be doing this? </p>
<p>This is the code I'm using:</p>
<pre><code>DECLARE @randomStuff TABLE ([id] INT, [val] VARCHAR(100))
INSERT INTO @randomStuff ([id], [val])
VALUES ( 1, 'Test Value 1' )
INSERT INTO @randomStuff ([id], [val])
VALUES ( 2, 'Test Value 2' )
INSERT INTO @randomStuff ([id], [val])
VALUES ( 3, 'Test Value 3' )
INSERT INTO @randomStuff ([id], [val])
VALUES ( 4, 'Test Value 4' )
INSERT INTO @randomStuff ([id], [val])
VALUES ( 5, 'Test Value 5' )
INSERT INTO @randomStuff ([id], [val])
VALUES ( 6, null )
INSERT INTO @randomStuff ([id], [val])
VALUES ( 7, null )
INSERT INTO @randomStuff ([id], [val])
VALUES ( 8, null )
INSERT INTO @randomStuff ([id], [val])
VALUES ( 9, null )
INSERT INTO @randomStuff ([id], [val])
VALUES ( 10, null )
UPDATE MyTable
SET MyColumn = (SELECT TOP 1 [val] FROM @randomStuff ORDER BY NEWID())
</code></pre>
http://stackoverflow.com/questions/1433915/is-this-a-good-or-bad-way-of-generating-random-numbers-for-each-record0Is this a good or bad way of generating random numbers for each record?Dems2009-09-16T16:04:41Z2009-09-16T17:48:08Z
<p>A colleague of mine discovered a behaviour in SQL Server which I was unaware of.</p>
<pre><code>CREATE VIEW dbo.vRandNumber AS
SELECT RAND() as RandNumber
GO
CREATE FUNCTION dbo.RandNumber() RETURNS float AS
RETURN (SELECT RandNumber FROM vRandNumber)
GO
DECLARE @mytable TABLE (id INT)
INSERT INTO @mytable SELECT 1
INSERT INTO @mytable SELECT 2
INSERT INTO @mytable SELECT 3
SELECT *, dbo.RandNumber() FROM @mytable
</code></pre>
<p>This <em>seems</em> to be the quickest way of generating a 'random' value for each record in a data set. But I'm not completely sure if it's a result of documented behaviour, or taking advantage of a bizarre convergance of coincidences.</p>
<p>Would <strong>you</strong> use something like this?</p>
<p><br></p>
<p><strong>EDIT</strong></p>
<p>This isn't a question about the merits of the RAND() function itself, but the use of the UDF/VIEW combination to force it to recalculate on every row. (Using just RAND() in the final query, instead of dbo.RandNumber(), would give the same value for every record.)</p>
<p>Also, the point is for the value to be different every time you look at it. So enabling random selection of records, for example.</p>
<p><strong>EDIT</strong></p>
<p>For SQL Server 2000+.</p>
http://stackoverflow.com/questions/1398113/sql-select-one-row-randomly-but-taking-into-account-a-weight2SQL : select one row randomly, but taking into account a weightFWH2009-09-09T07:37:04Z2009-09-15T11:57:11Z
<p>I'm using MySQL.
I have a table which looks like that:</p>
<pre><code>id: primary key
content: varchar
weight: int
</code></pre>
<p>What I want to do is randomly select one row from this table, but taking into account the weight. For example, if I have 3 rows:</p>
<pre><code>id, content, weight
1, "some content", 60
2, "other content", 40
3, "something", 100
</code></pre>
<p>The first row has 30% chance of being selected, the second row has 20% chance of being selected, and the third row has 50% chance of being selected.</p>
<p>Is there a way to do that ? If I have to execute 2 or 3 queries it's not a problem.</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1400505/postgresql-random-number-range-1-100(PostgreSQL) random number range 1 - 10KB222009-09-09T15:49:02Z2009-09-11T14:15:25Z
<p>Hi all, </p>
<p>since my approach for a test query which I worked on in <a href="http://stackoverflow.com/questions/1400056/postgress-actual-record-number-in-recordset">this question</a> did not work out I'm trying something else now. Is there a wayto tell pg's <code>random()</code> function to getme only numbers between 1 and 10?</p>
<p>thx for your time</p>
<p>K</p>
http://stackoverflow.com/questions/1342291/randomize-time-portion-of-date-field1Randomize Time Portion of Date FieldDave Jarvis2009-08-27T16:42:30Z2009-08-27T18:01:44Z
<p>What is the best way to randomize the time part for a DATE column, using Oracle 10g?</p>
<p>For example, the date portion for the data was set as follows:</p>
<pre><code>UPDATE table_name SET column_ts = SYSDATE - 120 + MOD(ROWNUM, 35)
</code></pre>
<p>I would like the time portion to have a different value for each row.</p>
http://stackoverflow.com/questions/1324063/generating-random-strings-with-t-sql2Generating random strings with T-SQLScott A. Lawrence2009-08-24T18:52:03Z2009-08-24T19:54:29Z
<p>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?</p>
http://stackoverflow.com/questions/580639/how-to-randomly-select-rows-in-sql6How to randomly select rows in SQL??Prashant2009-02-24T06:14:12Z2009-08-06T14:00:27Z
<p>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 anyone tell me how to create a query which will get random 5 rows (Id, and Name) every time when query is executed.</p>
<p><strong>edited</strong></p>
<p>I am using MSSQL Server 2005. </p>
http://stackoverflow.com/questions/1126725/t-sql-equivalent-of-rand3T-SQL equivalent of =rand()Raj More2009-07-14T17:05:50Z2009-07-30T07:38:14Z
<p>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.</p>
<p>Is there a SQL script/command that I can use to generate random dictionary words using t-sql?</p>
http://stackoverflow.com/questions/1159661/difference-between-two-queries-when-selecting-a-random-sample-from-oracle2Difference between two queries when selecting a random sample from oracleJC2009-07-21T14:46:50Z2009-07-21T15:16:46Z
<p><a href="http://stackoverflow.com/questions/733652/select-a-random-sample-of-results-from-an-oracle-query" rel="nofollow" title="This question">This question</a> 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 </p>
<pre><code>SELECT *
FROM (
SELECT *
FROM mytable
ORDER BY
dbms_random.value
)
WHERE rownum <= 1000
</code></pre>
<p>and something like</p>
<pre><code>select * from mytable where rownum<=1000 order by dbms_random.value
</code></pre>
<p>When I query using the first method, it takes a long time (still hasn't finished) but when I query using the 2nd method, it's very quick but the results don't seem to be random.</p>
<p>Appreciate and advice/direction y'all can provide.</p>
<p>Thanks!</p>
<p>JC</p>
http://stackoverflow.com/questions/19412/how-to-request-a-random-row-in-sql20How to request a random row in SQL?sverrejoh2008-08-21T06:28:49Z2009-07-02T13:12:02Z
<p>What is the best way to request a random row in pure SQL?</p>
http://stackoverflow.com/questions/903924/random-values-from-db-in-c0random values from db in c#pier2009-05-24T14:52:19Z2009-05-24T15:27:41Z
<p>How can I retrive random random ItemIDs from the list of existing ItemIDs in ItemID column intge db, given below is the sqlcommand I've used.</p>
<pre><code>(SqlCommand RetrieveComm =new SqlCommand("SELECT * FROM item_k WHERE ItemID='" +intGetRequest+ "'", searchCon))
</code></pre>
<p>thanks,</p>
http://stackoverflow.com/questions/832575/sql-query-help-select-random-employee-of-the-month1SQL Query Help: select random employee of the monthThomas2009-05-07T01:55:06Z2009-05-08T10:24:26Z
<p>Could any one show me how to get record from this statement</p>
<ul>
<li>Select random employee which is not an employee of the month in the last x months</li>
</ul>
<p>Table Employee<br />
ID<br />
EmployeeName </p>
<p>Table EmployeeOfTheMonth<br />
ID<br />
EmployeeID<br />
MonthStartedDate<br />
MonthEndedDate </p>
<p>Thank you very much</p>
http://stackoverflow.com/questions/211329/quick-selection-of-a-random-row-from-a-large-table-in-mysql4quick selection of a random row from a large table in mysqllajos2008-10-17T07:38:24Z2009-04-23T09:10:27Z
<p>What is a fast way to select a random row from a large mysql table?</p>
<p>I'm working in php, but I'm interested in any solution even if it's in another language.</p>
http://stackoverflow.com/questions/754741/how-to-get-random-data-from-database1how to get random data from database?unknown (google)2009-04-16T04:18:45Z2009-04-16T04:49:26Z
<p>I have a table of product. I have listed the items with pagination using rand() function. When using rand(), it displays the items in random order but the record is repeated while we go from 1 page to another page.
Is it possible to get non repeated items in each page using rand()? If yes how, if no what may be the option for this. </p>
http://stackoverflow.com/questions/652064/select-random-sampling-from-sqlserver-quickly0Select random sampling from sqlserver quicklyByron Whitlock2009-03-16T20:33:55Z2009-03-16T20:46:16Z
<p>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. </p>
<p>I tried using order by NEWID(), but that query will take too long as it has to do a table scan of all rows. </p>
<p>Is there a faster way to do this? </p>
http://stackoverflow.com/questions/457257/how-to-select-a-set-number-of-random-records-where-one-column-is-unique0How to select a set number of random records where one column is unique?Christian Hagelid2009-01-19T11:03:53Z2009-01-19T23:06:23Z
<p>I've been struggling with this one SQL query requirement today that I was wondering if someone could help me with.</p>
<p>I have a table of sports questions. One of the columns is the team related to the question. My requirement is to return a set number of random questions where the teams are unique.</p>
<p>So lets say we have the following table and want 5 questions:</p>
<pre><code>Question Answer Team
-----------------------------------
question 1 answer 1 team A
question 2 answer 2 team B
question 3 answer 3 team B
question 4 answer 3 team D
question 5 answer 3 team A
question 6 answer 3 team C
question 7 answer 3 team F
question 8 answer 3 team C
question 9 answer 3 team G
question 10 answer 3 team D
</code></pre>
<p>A valid result would return:</p>
<pre><code>question 1 answer 1 team A
question 2 answer 2 team B
question 4 answer 3 team D
question 6 answer 3 team C
question 7 answer 3 team F
</code></pre>
<p>I feel that it should be possible to accomplish this as a clean SQL statement with some clever use of Distinct and Take but I haven't been able to get it right yet.</p>
<p>Best solution so far is from <a href="http://stackoverflow.com/users/31345/mladen-prajdic">Mladen Prajdic</a>. I have just updated it slightly to improve on it's randomness:</p>
<pre><code>SELECT TOP 10 *
FROM (SELECT ROW_NUMBER() OVER(PARTITION BY Team ORDER BY Team, NEWID()) AS RN, *
FROM Question
) teams
WHERE RN = 2
ORDER BY NEWID()
</code></pre>
http://stackoverflow.com/questions/396943/how-to-select-n-random-rows-using-pure-sql1How to select N random rows using pure SQL?Gili2008-12-29T01:20:27Z2008-12-30T18:56:39Z
<p>How do we combine <a href="http://stackoverflow.com/questions/19412/how-to-request-a-random-row-in-sql">http://stackoverflow.com/questions/19412/how-to-request-a-random-row-in-sql</a> and <a href="http://stackoverflow.com/questions/183124/multiple-random-values-in-sql-server-2005">http://stackoverflow.com/questions/183124/multiple-random-values-in-sql-server-2005</a> to select N random rows using a single pure-SQL query? Ideally, I'd like to avoid the use of stored procedures if possible. Is this even possible?</p>
<p><strong>CLARIFICATIONS</strong>:</p>
<ol>
<li>Pure SQL refers to as close as possible to the ANSI/ISO standard.</li>
<li>The solution should be "efficient enough". Granted ORDER BY RAND() might work but as others have pointed out this isn't feasible for medium-sized tables.</li>
</ol>
http://stackoverflow.com/questions/371059/how-can-i-modify-this-to-get-a-random-record-on-the-many-end-of-a-join0How can I modify this to get a random record on the many end of a join?Allen Hardy2008-12-16T11:41:45Z2008-12-18T07:50:22Z
<p>Here is my query:</p>
<pre><code> Select Top 10 CS.CaseStudyID,
CS.Title,
CSI.ImageFileName
From CaseStudy CS
Left Join CaseStudyImage CSI On CS.CaseStudyID = CSI.CaseStudyID
And CSI.CSImageID in(
Select Min(CSImageID) -- >not really satisfactory
From CaseStudyImage
Group By CaseStudyID
)
Order By CS.CaseStudyID ASC
</code></pre>
<p>Instead of min(CSImageID) I'd like a random record from my CaseStudyImage table that corresponds to the particular case study</p>
<p>Can anyone point me in the right direction pleas?</p>
http://stackoverflow.com/questions/249301/simple-random-samples-from-a-mysql-database3Simple Random Samples from a (My)Sql databaseojrac2008-10-30T04:48:02Z2008-10-31T20:31:22Z
<p>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.</p>
<p>The "obvious" answer is to:</p>
<pre><code>SELECT * FROM table ORDER BY RAND() LIMIT 10000
</code></pre>
<p>For large tables, that's too slow: it calls RAND() for every row (which already puts it at O(n)), and sorts them, making it O(n lg n) at best. Is there a way to do this faster than O(n)?</p>
http://stackoverflow.com/questions/183124/multiple-random-values-in-sql-server-20051Multiple random values in SQL Server 2005Torbjörn Gyllebring2008-10-08T14:43:40Z2008-10-08T14:50:59Z
<p>I need to generate multiple random values under SQL Server 2005 and somehow this simply wont work</p>
<pre><code>with Random(Value) as
(
select rand() Value
union all
select rand() from Random
)select top 10 * from Random
</code></pre>
<p>Whats the preffered workaround?</p>