この問題の原因は、私が設定した動的な WHERE 句にあると思います。以下は、動的 WHERE 句がどのように機能するかです。
- 必須の WHERE 条件
q.SessionId = ?
- ユーザーが生徒のドロップダウン メニューから 1 人の生徒を選択した場合は、
AND sa.StudentId = ?
WHERE 句に追加します。 - ユーザーが
All
生徒のドロップダウン メニューから生徒のオプションを選択した場合AND sa.StudentId = ?
、WHERE 句から削除するか、表示しない - ユーザーが質問のドロップダウン メニューから 1 つの質問を選択した場合は、
AND q.QuestionId = ?
WHERE 句に追加します。 - ユーザーが
All
質問ドロップダウン メニューから質問オプションを選択した場合AND q.QuestionId = ?
、WHERE 句から削除するか表示しない
3 つのドロップダウン メニューがあります (以下は、サンプル データでの外観です)。
セッション:
<select name="session" id="sessionsDrop">
<option value="26">POKUB1</option>
<option value="27">POKUB2</option>
</select>
学生:
<select name="student" id="studentsDrop">
<option value="0">All</option>
<option value="39">Luke Mcfadzen</option>
<option value="40">Chris Tucker</option>
</select>
質問:
<select name="question" id="questionsDrop">
<option value="0">All</option>
<option value="72">1</option>
<option value="73">2</option>
</select>
この質問で前述した WHERE 条件がどのように機能するかを忘れないでください。セッション ドロップダウン メニューから選択したセッションが であるとしますPOKUB 1, drop down value: 26
。
1 人の生徒と 1 つの質問を選択すると、詳細が正しく表示されます。
- 生徒: Luke McFadzen - ドロップダウン値: 39
- 質問: 1 - ドロップダウン値: 72
したがって、WHERE 条件はq.SessionId = 26 AND sa.StudentId = 39 AND q.QuestionId = 72
.
しかし、All
生徒と質問のドロップダウン メニューのいずれかまたは両方でオプションを選択すると、出力には 1 人の生徒と 1 つの質問のみが表示され、何らかの奇妙な理由で、すべての質問の回答が結合され、すべての生徒の回答が 1 つの出力に結合されます。
現在All
、両方のドロップダウン メニューのオプションに のドロップダウン値があり0
、0
データベースから選択する値ではありませんが0
、特定のドロップダウン メニューから値が選択された場合、関連する条件をたとえば、次のようになります。
All
生徒と単一の質問 (値72
) -WHERE q.SessionId = 26 AND q.QuestionId = 72
- 単一 (値
39
) の学生とAll
質問 -WHERE q.SessionId = 26 AND sa.StudentId = 39
All
学生とAll
質問 -WHERE q.SessionId = 26
上記のシナリオには問題があります
静的な WHERE 句を使用してクエリを残した場合、学生と質問WHERE q.SessionId = ?
を選択すると詳細が正しく出力されますが、ドロップダウン メニューから選択されたすべての可能なオプションに対してクエリが機能する必要があるため、動的な WHERE が必要な理由句。正しい詳細が出力されるようにするにはどうすればよいですか?All
All
コード:
$selectedstudentanswerqry = "
SELECT
sa.StudentId, StudentAlias, StudentForename, StudentSurname, q.SessionId,
q.QuestionId, QuestionNo, QuestionContent, o.OptionType, q.NoofAnswers,
GROUP_CONCAT( DISTINCT Answer ORDER BY Answer SEPARATOR ',' ) AS Answer, r.ReplyType, QuestionMarks,
GROUP_CONCAT(DISTINCT StudentAnswer ORDER BY StudentAnswer SEPARATOR ',') AS StudentAnswer, ResponseTime, MouseClick,
(
SELECT sum( StudentMark )
FROM Student_Answer sta
WHERE sa.StudentId = sta.StudentId
AND sa.QuestionId = sta.QuestionId
)StudentMark
FROM Student st
INNER JOIN Student_Answer sa ON (st.StudentId = sa.StudentId)
INNER JOIN Student_Response sr ON (sa.StudentId = sr.StudentId) AND sa.QuestionId = sr.QuestionId
INNER JOIN Question q ON (sa.QuestionId = q.QuestionId)
INNER JOIN Answer an ON q.QuestionId = an.QuestionId
LEFT JOIN Reply r ON q.ReplyId = r.ReplyId
LEFT JOIN Option_Table o ON q.OptionId = o.OptionId
";
// Initially empty
$where = array('q.SessionId = ?');
$parameters = array($_POST["session"]);
$parameterTypes = 'i';
//check if POST is empty
// Check whether a specific student was selected
$p_student = empty($_POST["student"])?'':$_POST["student"];
switch($p_student){
case 0:
//dont' add where filters
break;
default:
$where[] = 'sa.StudentId = ?';
$parameters[] .= $_POST["student"];
$parameterTypes .= 'i';
}
// Check whether a specific question was selected
$p_question = empty($_POST["question"])?'':$_POST["question"];
switch($p_question){
case 0:
//dont' add where filters
break;
default:
$where[] = 'q.QuestionId = ?';
$parameters[] .= $_POST["question"];
$parameterTypes .= 'i';
}
// If we added to $where in any of the conditionals, we need a WHERE clause in
// our query
if(!empty($where)) {
$selectedstudentanswerqry .= ' WHERE ' . implode(' AND ', $where);
global $mysqli;
$selectedstudentanswerstmt=$mysqli->prepare($selectedstudentanswerqry);
// You only need to call bind_param once
if (count($where) == 1) {
$selectedstudentanswerstmt->bind_param($parameterTypes, $parameters[0]);
}
else if (count($where) == 2) {
$selectedstudentanswerstmt->bind_param($parameterTypes, $parameters[0], $parameters[1]);
}
else if (count($where) == 3) {
$selectedstudentanswerstmt->bind_param($parameterTypes, $parameters[0], $parameters[1], $parameters[2]);
}
}
$selectedstudentanswerqry .= "
GROUP BY sa.StudentId, q.QuestionId
ORDER BY StudentAlias, q.SessionId, QuestionNo
";
// get result and assign variables (prefix with db)
$selectedstudentanswerstmt->execute();
$selectedstudentanswerstmt->bind_result($detailsStudentId,$detailsStudentAlias,$detailsStudentForename,$detailsStudentSurname,$detailsSessionId,
$detailsQuestionId,$detailsQuestionNo,$detailsQuestionContent,$detailsOptionType,$detailsNoofAnswers,$detailsAnswer,$detailsReplyType,$detailsQuestionMarks,
$detailsStudentAnswer,$detailsResponseTime,$detailsMouseClick,$detailsStudentMark);
$selectedstudentanswerstmt->store_result();
$selectedstudentanswernum = $selectedstudentanswerstmt->num_rows();
while ($selectedstudentanswerstmt->fetch()) {
//Check if the student data exist.
if (!isset($questions[$detailsStudentId])) {
$questions[$detailsStudentId] = array(
'studentalias' => $detailsStudentAlias,
'studentforename' => $detailsStudentForename,
'studentsurname' => $detailsStudentSurname,
'questions' => array()
);
}
$questions[$detailsStudentId]['questions'][$detailsQuestionId] = array(
'questionno'=>$detailsQuestionNo,
'content'=>$detailsQuestionContent,
'optiontype'=>$detailsOptionType,
'noofanswers'=>$detailsNoofAnswers,
'answer'=>$detailsAnswer,
'replytype'=>$detailsReplyType,
'questionmarks'=>$detailsQuestionMarks,
'studentanswer'=>$detailsStudentAnswer,
'responsetime'=>$detailsResponseTime,
'mouseclick'=>$detailsMouseClick,
'studentmark'=>$detailsStudentMark
);
}
$selectedstudentanswerstmt->close();
foreach ($questions as $studentId => $studentData) {
echo '<p>'.$studentData['studentalias'].' - '.$studentData['studentforename'].' '.$studentData['studentsurname'].'</p>';
foreach ($studentData['questions'] as $questionId => $questionData) {
echo '<p><strong>'.$questionData['questionno'].': '.$questionData['content'].'<br/>';
echo $questionData['optiontype'].' - '.$questionData['noofanswers'].' - '.$questionData['answer'].' - '.$questionData['replytype'].' - '.$questionData['questionmarks'].'<br/>';
echo $questionData['studentanswer'].' - '.$questionData['responsetime'].' - '.$questionData['mouseclick'].' - '.$questionData['studentmark'].'</strong></p>';
}
}
以下は、$_POST['student']
およびの可能な var_dumps$_POST['question']
です。
単一の学生と単一の質問:
- 学生: Chris Tucker - string(2) "40"
- 質問: 1 - 文字列(2) "72"
独身の学生とすべての質問:
- 学生: Chris Tucker - string(2) "40"
- 質問: すべて - 文字列(1) "0"
すべての学生と単一の質問:
- 学生: すべて - string(1) "0"
- 質問: 1 - 文字列(1) "72"
すべての学生とすべての質問:
- 学生: すべて - string(1) "0"
- 質問: すべて - 文字列(1) "0"
以下は、生徒と質問var_dump($questions);
を選択した場合の例です。All
All
array(1) {
[39]=> array(4) {
["studentalias"]=> string(8) "u4838229"
["studentforename"]=> string(5) "Chris"
["studentsurname"]=> string(6) "Tucker"
["questions"]=> array(1) {
[72]=> array(11) {
["questionno"]=> int(1)
["content"]=> string(14) "What is a RAM?"
["optiontype"]=> string(3) "A-E"
["noofanswers"]=> int(1)
["answer"]=> string(7) "B,C,D,E"
["replytype"]=> string(6) "Single"
["questionmarks"]=> int(5)
["studentanswer"]=> string(9) "A,B,C,D,E"
["responsetime"]=> string(8) "00:00:07"
["mouseclick"]=> int(1)
["studentmark"]=> string(1) "2" } } } }