Click here to Skip to main content
15,886,030 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
dear sir/ma'am

i have created a quiz site .sir all things works well but one problem i found that i want to fetch questions randomly in my question list how can i do it sir
help me

how can i achiw=eve the goal to fetch questions randomly for each student let i have 5 question then all questions are shown to every student but randomly


sir how this query can be written correctly
SQL
SELECT *
FROM Quizquestion
WHERE (Quiz_Id = '1417')
ORDER BY ques_id RAND()



random quesid fetch

my get question code is
HTML
str = "select * from quizdetails where quiz_id = '" & quizid & "'"
cmdly.rst1 = New DataTable
cmdly.rst1 = cmdly.executenonquery(str)


HTML
str = "select TOP 1 ques_id, question, correctoption, Quiz_Id from quizquestion where quiz_id = '" & quizid & "' ORDER BY NEWID()"
cmdly.rst2 = New DataTable
cmdly.rst2 = cmdly.executenonquery(str)
If cmdly.rst2.Rows.Count > 0 Then
 
lbquescnt.Text = quesid
lbques.Text = "Q. " & cmdly.rst2.Rows(0).Item("question").ToString
 
cmdly.rst3 = New DataTable
str = "select * from quizoption where quiz_id = '" & quizid & "' and ques_id = '" & cmdly.rst2.Rows(0).Item("ques_id") & "'"
cmdly.rst3 = cmdly.executenonquery(str)
 
If cmdly.rst3.Rows.Count > 0 Then
i = cmdly.rst3.Rows.Count
c = 0
quizlst.Items.Clear()
 
While c < i
Dim qlist As New System.Web.UI.WebControls.ListItem
qlist.Text = cmdly.rst3.Rows(c).Item("optionVALUE").ToString
qlist.Value = cmdly.rst3.Rows(c).Item("option_id").ToString
quizlst.Items.Add(qlist)
c = c + 1
End While
End If
End If
Posted
Updated 27-Jun-13 1:23am
v2
Comments
[no name] 27-Jun-13 7:19am    
"fetch questions randomly in my question list how can i do it sir", the exact same way you have already been told.

1 solution

Your question has already been answered here[^]
 
Share this answer
 
Comments
Maciej Los 27-Jun-13 17:38pm    
Of course, +5!

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900