PHP,如何显示第二个表

时间:2018-09-06 01:00:23

标签: php

DBOperations.php

public function getByQRID($id){
    $stmt = $this->conn->prepare("SELECT students.*, courses.* FROM students INNER JOIN courses ON courses.id = students.course_id WHERE students.id = ?");
    $stmt->bind_param("s", $id);
    $stmt->execute();
    return $stmt->get_result()->fetch_assoc();
}

更新代码

1 个答案:

答案 0 :(得分:0)

如果您使用的是MySql,请尝试以下操作:

select * from Student 
inner join Course on Student.course_id = Course.id
where Student.id = 1

(1这是一个例子,我在猜测,因为您的问题尚不完全清楚)。

希望对您有帮助!