我需要组合以下2个SELECT语句,以便第二个语句的结果作为第一个选择的每一行中的列出现。
SELECT MEM.Id,
EN.artistName,
EN.dateAdded,
EN.voteStatus,
ES.enterNextRound,
ES.notified,
ES.voted,
GR.genre,
ES.entrantId AS bandID
FROM recMembers AS MEM
LEFT JOIN recEntrantStatus AS ES
ON MEM.Id = ES.judgeId
LEFT JOIN recEntrants AS EN
ON ES.entrantId = EN.Id
LEFT JOIN recGenre AS GR
ON EN.genreId = GR.Id
WHERE MEM.Id = @memberId
AND ES.roundId = 2
SELECT COUNT(enterNextRound)
FROM recEntrantStatus
WHERE enterNextRound = 1
AND roundId = 2
AND entrantId = ES.entrantId
在哪里' ES.entrantId'取自第一个选择中访问的当前行。
任何指针都将非常感激。
由于
答案 0 :(得分:3)
将其包装在子查询中并使用CROSS JOIN
SELECT MEM.Id,
EN.artistName,
EN.dateAdded,
EN.voteStatus,
ES.enterNextRound,
ES.notified,
ES.voted,
GR.genre,
ES.entrantId AS bandID,
s.totalCount
FROM recMembers AS MEM
LEFT JOIN recEntrantStatus AS ES
ON MEM.Id = ES.judgeId
LEFT JOIN recEntrants AS EN
ON ES.entrantId = EN.Id
LEFT JOIN recGenre AS GR
ON EN.genreId = GR.Id
CROSS JOIN (
SELECT COUNT(enterNextRound) totalCount
FROM recEntrantStatus
WHERE enterNextRound = 1
AND roundId = 2
AND entrantId = @memberId
) s
WHERE MEM.Id = @memberId
AND ES.roundId = 2
答案 1 :(得分:3)
您可以使用OUTER APPLY
:
SELECT MEM.Id,
EN.artistName,
EN.dateAdded,
EN.voteStatus,
ES.enterNextRound,
ES.notified,
ES.voted,
GR.genre,
ES.entrantId AS bandID,
src.CountEnterNextRound
FROM recMembers AS MEM
LEFT JOIN recEntrantStatus AS ES
ON MEM.Id = ES.judgeId
LEFT JOIN recEntrants AS EN
ON ES.entrantId = EN.Id
LEFT JOIN recGenre AS GR
ON EN.genreId = GR.Id
OUTER APPLY
(
SELECT COUNT(enterNextRound) CountEnterNextRound
FROM recEntrantStatus
WHERE enterNextRound = 1
AND roundId = 2
AND entrantId = @memberId
) src
WHERE MEM.Id = @memberId
AND ES.roundId = 2
根据你的编辑,你试过了吗?
SELECT MEM.Id,
EN.artistName,
EN.dateAdded,
EN.voteStatus,
ES.enterNextRound,
ES.notified,
ES.voted,
GR.genre,
ES.entrantId AS bandID,
(SELECT COUNT(enterNextRound)
FROM recEntrantStatus
WHERE enterNextRound = 1
AND roundId = 2
AND entrantId = ES.entrantId) CountEnterNextRound
FROM recMembers AS MEM
LEFT JOIN recEntrantStatus AS ES
ON MEM.Id = ES.judgeId
LEFT JOIN recEntrants AS EN
ON ES.entrantId = EN.Id
LEFT JOIN recGenre AS GR
ON EN.genreId = GR.Id
WHERE MEM.Id = @memberId
AND ES.roundId = 2
甚至:
SELECT MEM.Id,
EN.artistName,
EN.dateAdded,
EN.voteStatus,
ES.enterNextRound,
ES.notified,
ES.voted,
GR.genre,
ES.entrantId AS bandID,
src.CountEnterNextRound
FROM recMembers AS MEM
LEFT JOIN recEntrantStatus AS ES
ON MEM.Id = ES.judgeId
LEFT JOIN recEntrants AS EN
ON ES.entrantId = EN.Id
LEFT JOIN recGenre AS GR
ON EN.genreId = GR.Id
LEFT JOIN
(
SELECT COUNT(enterNextRound) CountEnterNextRound, entrantId
FROM recEntrantStatus
WHERE enterNextRound = 1
AND roundId = 2
GROUP BY entrantId
) src
ON ES.entrantId = src.entrantId
WHERE MEM.Id = @memberId
AND ES.roundId = 2;
答案 2 :(得分:1)
怎么样
SELECT *
FROM
(
SELECT MEM.Id, EN.artistName, EN.dateAdded, EN.voteStatus, ES.enterNextRound,
ES.notified, ES.voted, GR.genre, ES.entrantId AS bandID
FROM recMembers AS MEM
LEFT JOIN recEntrantStatus AS ES
ON MEM.Id = ES.judgeId
LEFT JOIN recEntrants AS EN
ON ES.entrantId = EN.Id
LEFT JOIN recGenre AS GR
ON EN.genreId = GR.Id
WHERE MEM.Id = @memberId
AND ES.roundId = 2
) x
,
(
SELECT COUNT(enterNextRound) as Total
FROM recEntrantStatus
WHERE enterNextRound = 1
AND roundId = 2
AND entrantId = @memberId
) y
当你从没有连接的两个表做起时,你得到了一个像交叉连接的笛卡尔积。所以它应该是相同的执行时间。
这是写它的隐含方式。