in reply to Re: Random Picks
in thread Random Picks

Whoa! Way too complex there! Try this
select * from table order by rand() limit 1000;
There's no need to modify the table just to select a row at random from it.