我正在尝试一个非常艰难的选择...希望你能帮助我。
这是事情。 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 ......徒劳无功。 我找不到办法去做。
有什么想法吗?
非常感谢你!
答案 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');