如何检查(子请求)中的值

时间:2016-06-12 16:16:00

标签: sql sql-server-2008

我想检查select('textScore title _id description')是否在子请求中。我的子请求显示该表 enter image description here

这就是我试过的

idPartie

1 个答案:

答案 0 :(得分:0)

如果我理解你的问题,你可以从子查询中返回2列,然后对idPartie进行“比较”比较。这不行。而是尝试这样的事情。

select * from partie
where idPartie in 
(select  distinct idPartie from Participer_Partie);