Sql请求:根据另一个表中的值在表中选择

时间:2017-07-18 22:11:31

标签: sql pdo request

我正在尝试一个非常艰难的选择...希望你能帮助我。

这是事情。 I have these two tables

我想选择"学生"每个没有" unique_key" =:myvalue in" attendance"表

例如: 值3_2017-07-10,我想选择2,4,5 值3_2017-07-17,我想选择3,4

我尝试了一些LEFT JOIN,我尝试了一些NOT EXISTS ......徒劳无功。 我找不到办法去做。

有什么想法吗?

非常感谢你!

1 个答案:

答案 0 :(得分:0)

http://sqlfiddle.com/#!9/1e4a515/1

Select * from students where id not in (Select id_eleve from attendance where unique_key='3_2017-07-10');
Select * from students where id not in (Select id_eleve from attendance where unique_key='3_2017-07-17');