我有四张桌子--学生,教育,访问,医疗资料。我正在尝试创建一些类似高级搜索表单,用户可以在其中输入标准。从学生表中获取学生的姓名、电话、地址等,我得到的是小组、系、创建和大学的名称。从我的访问中,我试图让speciallistApointmant,有可能有更多的其中之一。表使用桥表student_to_visit、student_to_education和medicaldata_to_student进行关联。
下面是我当前使用的sql查询
SELECT
DISTINCT
s.ID,
m.vision,
m.hearing,
m.movement,
m.cardno,
v.speciallistApointmant,
s.fio,
s.birthdate,
edge,
gender,
homeaddress,
actualaddress,
phone,
workplace,
enterence,
financesource,
studyform,
c.gruppa,
c.greate,
c.departmant
FROM
student s,
education_to_student b,
education c,
student_to_visit sv,
visits v,
medicaldata_to_student ms,
medicaldata m
where
b.student_id = s.id
and b.education_id = c.id
and ms.student_id=s.id
and ms.medical_id=m.id
and sv.student_id=s.id
and sv.visit_id=v.id
and gender = 1
因为一名学生可以多看一次,所以一名专业学生会多看一次。另外,如果没有访问特定的学生,该学生不会出现在查询结果中。在上面的例子中,我尝试用gender=1来选择学生,但是有可能会有更多的参数。如何正确构建此查询?
下面是带有表单的PHP代码:
public function getstats($gender,$greate,$edge,$financesource,$birthdate,$hearing,$vision,$movement,$cardno,$speciallistApointmant)
{
//where begin
$where=" where b.student_id = s.id and b.education_id = c.id and ms.student_id=s.id and ms.medical_id=m.id and sv.student_id=s.id and sv.visit_id=v.id";
// echo var_dump($gender);
if ($gender!='')
{
echo var_dump($gender);
$where .=" and gender = $gender";
// echo var_dump($gender);
}
if (!empty($greate))
{
$where .="and greate='$greate'";
}
if (!empty($edge))
{
$where .="and edge='$edge' ";
}
if (!empty($financesource))
{
$where .="and financesource='$financesource'";
}
//birthdate add here
//end
if (!empty($hearing))
{
$where.="and hearing='$hearing";
}
if (!empty($vision))
{
$where .="and vision='$vision'";
}
if (!empty($movement))
{
$where .="and movement='$movement'";
}
if (!empty($cardno))
{
$where.="and cardno='$cardno'";
}
if (!empty($speciallistApointmant))
{
$where .="and speciallistApointmant='$speciallistApointmant'";
}
//echo var_dump($where);
//where end
$sql = "SELECT DISTINCT s.ID, m.vision, m.hearing, m.movement, m.cardno,v.speciallistApointmant, s.fio, s.birthdate, edge, gender, homeaddress, actualaddress, phone, workplace, enterence, financesource, studyform, c.gruppa, c.greate, c.departmant\n"
. "FROM student s, education_to_student b, education c,student_to_visit sv, visits v,medicaldata_to_student ms, medicaldata m"."$where";
发布于 2015-10-23 05:14:53
select DISTINCT使用列出的所有字段来确定某一行是否不同,因为您在选择中使用了所有教育、访问和医疗数据字段,您将得到具有不同访问(或类似于其他表)的重复学生。
如果您需要查询中的其他表数据(不仅仅是学生数据),请查看GROUP,并对其他表字段使用聚合函数(count、min、max等)。
如果您只需要一个学生列表,请从选择短语中删除其他表列。您可以在WHERE短语中使用列,即使它们不在SELECT短语中。
另外:您应该真正使用PDO (或其他DB层),并准备好查询以防止SQL注入攻击。
发布于 2015-10-25 23:45:39
另外,如果没有访问特定的学生,该学生不会出现在查询结果中。
您可以使用左联接或右联接来检索孤儿,即与另一个表中的记录无关的数据。例如
SELECT s.ID, s.name, m.vision, m.hearing FROM Student s LEFT JOIN medicaldata_to_student ms on s.id=md.student_id LEFT JOIN medicaldata m on ms.medical_id=m.id;
将用相关的医学数据检索学生数据。如果一个学生没有医学数据,他的id和他的名字将被设置,医疗数据将被设置为null。
https://stackoverflow.com/questions/33302566
复制相似问题