2

我希望有人可以帮助我

我有两个表wp_wp_pro_quiz_statistic_refwp_wp_pro_quiz_statistic它们之间的共同链接是statistic_ref_id.

想要显示的数据在wp_wp_pro_quiz_statistic我可以使用以下方法获取它:

<?php
global $wpdb;
$current_user = wp_get_current_user();
$current_user_statid = $wpdb->get_results( "SELECT * FROM wp_wp_pro_quiz_statistic_ref WHERE user_id = $current_user->ID");

$result = $wpdb->get_results( "SELECT * FROM wp_wp_pro_quiz_statistic WHERE $current_user_statid = statistic_ref_id");

echo "Question:"."  "."Points:"."<br><br>";
foreach($result as $row)
{

echo $row->question_id." ".$row->points."<br>";

}
?>

wp_wp_pro_quiz_statistic_ref存储user_idstatistic_ref_id 用户 ID 可以使用$current_user = wp_get_current_user();或类似的东西。我不确定如何使用 'statistic_ref_id' 仅显示与 in 的值匹配的statistic_ref_idwp_wp_pro_quiz_statistic

更新:

    <table border="1" width="500px">
        <tr>
            <th>Question Number</th>
<th>Clause</th>
<th>Subject</th>
            <th>Score</th>
        </tr>
<?php
global $wpdb;
$current_user = wp_get_current_user();
$result = $wpdb->get_results( "
SELECT stats.*
  FROM wp_wp_pro_quiz_statistic stats
       JOIN wp_wp_pro_quiz_statistic_ref refs on stats.statistic_ref_id = refs.statistic_ref_id
WHERE refs.user_id= $current_user->ID ");
foreach($result as $row) {
echo "<tr>
                <td>$row->question_id</td>
<td>some clause</td>
<td>some subject</td>
                <td>$row->points</td>
            </tr>";
}
?>
</table>
<table border="1" width="500px">
<tr><td width="445px">Total Score (Maximum 125)</td><td width="55px">0</td> </tr>
</table>
</body>
</html>
4

1 回答 1

1

如果我理解了您的问题,您应该能够使用 SQL 连接;像这样的东西:

<?php
global $wpdb;
$current_user = wp_get_current_user();
$result = $wpdb->get_results( "
    SELECT stats.*
      FROM wp_wp_pro_quiz_statistic stats
           JOIN wp_wp_pro_quiz_statistic_ref refs on stats.statistic_ref_id = refs.statistic_ref_id
    WHERE refs.user_id= $current_user->ID ");

echo "Question:"."  "."Points:"."<br><br>";
foreach($result as $row) {
    echo $row->question_id." ".$row->points."<br>";
}
?>
于 2013-08-28T15:50:29.747 回答