Re: rownum-Problem
This is that, a ROWNUM in Oracle is the sequential ID of the row as it is retrieved. So you cannot do:
SELECT * FROM sometable WHERE rownum = 17;
as with this condition, you will never get to row 17, as to find a row 17, you first have to find rows 1 to 16, which you have already stated that you don't want. The same reasoning goes for 57 also :-)
At least this is how rownum worked in the good old days. And nothiing wrong with that, as long as you know how it works.
To do what you want to do in MySQL is actually much MUCH easier. Just do this:
SELECT * FROM mytable ORDER BY rand() LIMIT 200;
That's it...
/Karlsson
Subject
Views
Written By
Posted
17793
August 06, 2004 12:28AM
28359
September 26, 2004 09:04AM
11961
October 09, 2004 03:02PM
22601
October 10, 2004 12:56PM
12479
December 22, 2004 07:05AM
Re: rownum-Problem
13478
December 22, 2004 01:59PM
9648
April 13, 2005 01:25PM
12959
April 14, 2005 12:08AM
7093
April 26, 2005 02:12AM
7610
April 20, 2005 04:37PM
9979
April 23, 2005 09:48AM
5650
August 26, 2008 03:47AM
5859
April 26, 2005 02:16AM
5592
October 18, 2005 02:57PM
5542
November 16, 2005 04:58PM
18693
June 28, 2006 04:39PM
19120
August 08, 2006 07:45AM
5318
December 14, 2008 10:01PM
5487
February 05, 2009 04:49PM
4683
December 27, 2008 03:27AM
4787
December 27, 2008 04:19AM
6512
February 08, 2007 02:20AM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.