Consider these Tables:
Table Items:
ItemID ItemName
------------------
1 N1
2 N2
3 N4
4 N5
and in MyTbl table I have a ItemID that may be like this:
ItemId
----
1
1
3
4
4
4
I want to write a query that return this result:
ItemId count
-------------------
1 2
2 0
3 1
4 3
How I can do this without Cursors?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…