我确定这是非常基础的,对SQL来说我还是一个新手,感谢所有帮助:)。
我在表studentview
,Student_Form
中有一列,在此列中有多种数据:
学生面试日期,例如2019-01-10
如果看到学生“是”或“否”。
表sprofile
中还有另一列,我可以指定WHERE 'Date of student interview'
,然后student_form将显示日期。
如果我搜索是否看到过学生:WHERE sv.sprofile = 'Student:seen' and then student_form column will show "Yes" or "No"
我的问题出现在我说:WHERE sv.student_form = 'Yes'
时,我只会看到“是”,但是我想看到被视为“是”的学生,以及date of their interview
都来自学生表格。
如果基于sv.sprofile
搜索一个,则得到dates
或yes/no
。
有没有办法同时获得两者,出于我的目的,我需要找到被看过的学生以及看过他们的日期。
非常感谢您,我感谢所有帮助。
此致
氙气