我想根據相同的用戶標識值從[listings]
中選擇標題列以及列表在[ads]表中出現的次數。計算表中出現次數
結果應該是這樣的:
[title] [cnt]
Acme 5
MSFT 10
GOOG 7
等
這不起作用:
select
l.title,
(COUNT (id) FROM ads WHERE ads.userid = l.userid) as cnt
from
listings l
INNER JOIN
ads a on a.userid = l.userid
WHERE
l.listingtype = 2