您好,目前正在使用此代码
$qry_display = "
SELECT
student_id,
fname,
sex,
lname,
mname,
level,
photo,
birth_date,
birth_place,
address,
father,
father_occupation,
father_phone,
father_company,
father_degree,
mother,
mother_occupation,
mother_phone,
mother_company,
mother_degree,
adviser_id
from
tbl_enroll
where
student_id='$id'
AND level='$lvl'
";
$sql_display = mysql_query($qry_display) or die (mysql_error());
上面的代码从tbl_enroll获取大部分数据。现在我想在 tbl_er上获取一些数据。tbl_enroll和tbl_er与student_id的主键连接,也与tbl_section连接一次。tbl_er和tbl_section与 section_id 的外键相连。
到目前为止,我正在考虑执行多个 sql 查询并使用一个 mysql_query 触发器,但它不会工作,因为触发器不会与三个 sql 查询一起工作。