vote up 0 vote down star

I am working on a MCQ module and I need to fetch random questions from my database. The problem is that I seem to get duplicates.

flag

58% accept rate
Apologies for the edit race condition, RichB – ryeguy Mar 23 at 16:39
@ryeguy: I rolled back, as I think I have a better edit. Feel free to add on to mine. – Rich B Mar 23 at 16:39
do your questions change often, or are they mostly static? – Greg Dean Mar 23 at 16:54
@Greg — Well, if this one is any indication… ;-) – Ben Blank Mar 23 at 17:15
Looks like what you have is a database question, not a PHP question, depending how you want to execute this, please tell us what database you are using. – TravisO Mar 23 at 19:06

7 Answers

vote up 5 vote down check

If you're fetching them from database, use SQL to do your job. e.g. fetching 20 random questions (without repeating):

SELECT * FROM questions ORDER BY RAND() LIMIT 20
link|flag
vote up 0 vote down

If you have a very large number of rows you can add a column to the table which stores a number between 0 and 1 and then fetch with a query:

SELECT * FROM `mytable` WHERE `randcolumn` > RAND() LIMIT 20

This means that your database doesn't have to randomly order the entire table to provide just 20 rows.

link|flag
vote up 0 vote down

See http://stackoverflow.com/questions/203382/do-stateless-random-number-generators-exist

Any sequence of pseudo-random numbers will eventually repeat. How you obtain your pseudo-random numbers?

link|flag
vote up 1 vote down

If you're using MySql and you have reasonable small amount of data, you can use ORDER BY RAND()

link|flag
Other RDBMSes have similar syntax. For example, I believe you can use "ORDER BY NEWID()" in MSSQL and "ORDER BY DBMS_CRYPTO.randominteger" in Oracle. – Ben Blank Mar 23 at 17:19
vote up 6 vote down

Sounds like you want to shuffle the questions, not randomize access to them. So your algorithm would be something like this.

  1. Get the all question (or question keys) you want to display.
  2. Shuffle them
  3. Retrieve/ display in them in the shuffled order

for shuffling check out: Fisher-Yates shuffle algorithm

link|flag
vote up 0 vote down

Without any more info i can suggest a rudimentary solution. (but please update your question with more info)

I'm guessing you have users, because then you could save into a table (be it temporary or not), what questions said user has already gotten.

If you don't have users, you can use the SESSION_ID as a user identifier for that user.

So when you fetch a question for the first time, and the user answers it, it saves the info you need to save, and then the user's id and the question's id into a table.

When fetching the next question, you do a check to see if the user has that question id in this new table.

link|flag
vote up -1 vote down

What methods have you tried? I don't know if any RNG can guarantee non-repeating numbers in theory, but you can always store a table of results and throw away any repetitions based on that.

link|flag
Be careful doing something like this. If you are generating truly random numbers, there will eventually be repetitions. Discarding the repetitions makes the process unrandom. – theycallmemorty Mar 23 at 16:38
I agree--it would make things less random; in his case though, with his aim that he fetch random questions, it makes sense to view the problem as something like a raffle. He's drawing random numbers from a hat: once one is drawn, it can't be drawn again. – Peter Mar 23 at 16:42
i hv first produces the random no. by mt_rand() and then store them in a string for further reference and check each time for the no. compiaring with previous values.......but the repitiotion test fails dome time...... – PROFESSOR Mar 23 at 18:17
This kind of stuff should be a comment on his question, not an answer. – TravisO Mar 23 at 19:05

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.