我已经找到了如何使用mysql中的distinct删除重复项,但它不能用于我的内连接查询,
顺便说一下这是一个php文件。我的问题是我无法使用不同的原因删除重复项我不知道如何在内部联接查询中使用distinct。
$query=mysql_query("SELECT student.username, student.f_name,student.m_name,student.l_name, student.course, result.q_id, result.correct FROM student INNER JOIN result ON student.id=result.stud_id WHERE s_group='$me'") or die ("no records found!");
while($row = mysql_fetch_array($query))
{
{
$pdf->Cell(26,9,$row['username'],1,0);
$pdf->Cell(30,9,$row['f_name'],1,0);
$pdf->Cell(30,9,$row['m_name'],1,0);
$pdf->Cell(30,9,$row['l_name'],1,0);
$pdf->Cell(30,9,$row['course'],1,0);
$pdf->Cell(29,9,$row['q_id'],1,1);
}
}