Log in

View Full Version : Randomly pick one out of table


AnhTuanCool
01-08-2005, 11:08 PM
So hi people,

I have a small question and very needed to be explained :)
I want to randomly pick an id out of a table so I wrote this

$allids = $DB_site->query("SELECT id FROM " . TABLE_PREFIX . "test");

$idarray = array();
while ($ids = $DB_site->fetch_array($allids))
{
$idarray[] .= $ids['id'];
}

$id = array_rand($idarray);

But it didn't work, I know my PHP and SQL skill still bad so I really need some support now. Thanks in advanced.

Creative Suite
01-08-2005, 11:13 PM
$allids = $DB_site->query("SELECT id FROM " . TABLE_PREFIX . "test order by RAND() LIMIT 1");

filburt1
01-08-2005, 11:21 PM
Almost...if you want to get just one randomly:

SELECT column FROM table ORDER BY RAND() LIMIT 1

You should pretty much never have to get the entire contents of a table. It scales like crap and you'll cripple the server after the table gets too big. The exception is when you know the table is going to have very few rows and you need to read each and every one of the rows in the table.

AnhTuanCool
01-09-2005, 02:13 AM
Got it worked right the first try, thank you very much guys :)