我有一张像这样的表 -
RecordID PropertyID PropertyVal
--------------------------------------------------
3215 7 john doe
3215 11 Chicago
3215 13 Business Development Analyst
3216 7 jane doe
3216 11 Chicago
3216 13 Managing Director
3217 7 mike smith
3217 11 Chicago
3217 13 Business Development Analyst
3218 7 john smith
3218 11 Seattle
3218 13 Managing Director
如何返回PropertyID = 13 AND PropertyVal='Business Development Analyst'AND PropertyID = 11 AND PropertyVal = 'Chicago'
的用户名。如何为同一列执行多个where子句?
编辑: 我需要结果集看起来像这样 -
Name
----
John Doe
Mike Smith
答案 0 :(得分:4)
select PropertyVal
from your_table
where PropertyID = 7
and RecordID in
(
select RecordID
from your_table
where (PropertyID = 13 AND PropertyVal='Business Development Analyst')
or (PropertyID = 11 AND PropertyVal = 'Chicago')
group by RecordID
having count(distinct PropertyID) = 2
)
答案 1 :(得分:3)
不确定你想要什么。它可能是
...
where (PropertyID = 13 AND PropertyVal='Business Development Analyst')
or (PropertyID = 11 AND PropertyVal = 'Chicago')
或
...
where PropertyID in (13, 11)
and PropertyVal in ('Business Development Analyst', 'Chicago')
答案 2 :(得分:1)
我们可以使用JOIN条款......
前:
SELECT LIST_OF_COLUMNS FROM TBL1 T1 JOIN TBL2 T2
ON T1.COL1=T2.COL1 AND
T1.COL2=T2.COL2 AND
T1.COL3=T2.COL3 AND
T1.COL4=T2.COL4
答案 3 :(得分:0)
SELECT LIST_OF_COLUMNS FROM TBL1 T1 JOIN TBL2 T2
ON T1.COL1=T2.COL1 AND
T1.COL2=T2.COL2 AND
T1.COL3=T2.COL3 AND
T1.COL4=T2.COL4
答案 4 :(得分:0)
使用INTERSECT运算符
select PropertyVal as "Name"
from mytable
where PropertyID=7
and RecordID in
(
select RecordID
from mytable
where PropertyID = 13 AND PropertyVal='Business Development Analyst'
intersect
select RecordID
from mytable
where PropertyID = 11 AND PropertyVal='Chicago'
)