Re: Random Entries
am 05.01.2007 22:24:22 von Rik
thehuby wrote:
> I have a table of articles and I want to grab 3 at random - is there a
> way I can do this using SQL or will I have to get all results out then
> pick them at random using PHP (something like rand() based on the size
> of the result set?)
SELECT .... ORDER BY RAND() LIMIT 3
--
Rik Wasmus
Re: Random Entries
am 05.01.2007 22:39:59 von thehuby
Sir, you are a legend.
Rick
Rik wrote:
> thehuby wrote:
> > I have a table of articles and I want to grab 3 at random - is there a
> > way I can do this using SQL or will I have to get all results out then
> > pick them at random using PHP (something like rand() based on the size
> > of the result set?)
>
> SELECT .... ORDER BY RAND() LIMIT 3
> --
> Rik Wasmus