使用MySQL获取数据库记录 - 使用PDO随机选择行

时间:2015-06-10 08:22:47

标签: php mysql ajax pdo

我正在尝试从特定于测验的数据库中获取数据。我有两个名为'questions'和'options'的表。每个问题都有2个相应的选项,'questionID'行在'options'表中作为外键出现。 我正在通过此查询获取4个随机问题及其相应的答案:

    SELECT * FROM questions INNER JOIN options ON
    questions.questionID=options.questionID, (SELECT questionID AS sid FROM questions 
    ORDER BY RAND( ) LIMIT 4 ) tmp WHERE questions.questionID = tmp.sid AND
options.questionID=questions.questionID ORDER BY questions.questionID

此查询运行良好并从phpMyAdmin上的问题和选项表中检索适当的行但是当我在php中获取数组然后使用AJAX检索数组时,所有选项都是随机的并且与他们的问题不匹配 - 其中一些是与所选的任何问题都不匹配。 提前感谢任何建议。

我自己检查了php fiel,看起来它只是AJAX的错。现在我明白为什么 - 我正在对文件进行两次调用,我认为它可能会再次运行查询,这就是为什么答案不匹配。有解决方案吗

这是我的AJAX调用,只是使用不同的url参数答案:

var dataQuest = (function() {  
    var questions;
    function load(){
        $.ajax({ 
            type: "GET",
            url: "randomQ.php?q=0",
            dataType: 'json',
            async: false,
            success: function(data){
                questions = data;
                //alert(questions);
                alert(questions);
            },
            error: function(XMLHttpRequest, textStatus, errorThrown){
            $('#place1').text("Error: " +textStatus +" "+ errorThrown);
            }
        });//end ajax
    } //end of load
    return {
        load: function() { 
            if(questions) return;
            load();
        },
        getQuest: function(){
             if(!questions) load();

             return questions;
        }
    }
})();//end of dataQuest function

根据要求 - php位:

while( $row = $stmt->fetch()) { 
            $quests[] = $row['question'];
            $answers[] = $row['option'];
}

//$questions = array_unique($quests);
//$answs = array_chunk($answers, 2);

if($_GET['q']==0)
{
    echo json_encode($quests);

}
else
{
    echo json_encode($answers);
}

我已将其改为:

$arrays[] = $quests;
$arrays[] = $answers;


    echo json_encode($arrays);
    //echo json_encode($answers);

然后将相应的答案和问题返回给AJAX - 然而为了实现这一点 - 我需要在Javascript中拆分这个2D数组 - 任何有关如何实现这一点的建议。

1 个答案:

答案 0 :(得分:0)

试试这个......

SELECT * FROM questions 
LEFT JOIN options ON
questions.questionID=options.questionID
WHERE options.questionID=questions.questionID 
ORDER BY RAND()
LIMIT 8 //You will need 8 rows as each question has 2 option rows

很难知道如果没有看到你的数据库架构,但这应该可行。

在您的PHP脚本中,此更改可以帮助您关联jQuery中的数据:

while( $row = $stmt->fetch()) { 
        ///use the PK of the question instead of arbitrary index
        $quests[$row['question_id']] = $row['question'];
        $answers[$row['question_id']] = $row['option'];
}

或者也许..

while( $row = $stmt->fetch()) { 
        //create a single array indexed by question pk with sub array of options
        $quests[$row['question_id']]['question'] = $row['question'];
        $quests[$row['question_id']]['options'][] = $row['option'];
}