只是问是否有可能在 php 中执行 sql 语句的 1 个函数。
我的 sql 真正做的是从我的数据库中的三个表中获取数据。我目前不确定使用什么方法。内部连接会弹出,但我忘记了正确的语法。所以我在想这个。
$qry_display = "SELECT student_id,
section_id,level,photo,address,father_occupation,father_phone,father_company,mother_occupation,
mother_phone,mother_company
from tbl_er
where student_id='$id' AND level="3rd Year"";
上面的语句将从 tbl_er 中检索信息,这些信息将是学生的历史。
$qry_display = "SELECT fname,
sex,
lname,
mname,
birth_date,
birth_place,
address,
father,
father_degree,
mother,
mother_degree,
from tbl_enroll where student_id='$id'";
上述语句将从 tbl_enroll 中检索部分信息,这些将是学生的核心不可更改数据。第一条语句还有要检索的“section_id”。所以我的想法是检索该值,以便将其用于最后一个 sql。
$qry_display = "SELECT section_name,adviser_id,schoolyr
from tbl_section
where student_id='$id' AND section_id='$sid'";
我对如何获取 section_id 的想法是在我要发表的最后一条语句之前。
$sid= section_id (I am unsure if this will work.)
该语句还会触发一个函数中的所有三个语句吗?
$sql_display = mysql_query($qry_display) or die (mysql_error());
谢谢,感谢任何反馈。