我試圖寫在MS Access 2010查詢,但它不是讓伯爵(不同的OrderID)語法在那裏,我很容易能夠在甲骨文寫。計數(不同字段名)在訪問查詢
Select BrandID, Count(Distinct OrderID), Count(Distinct ModelID)
From ordertable
Where Trunc(Pur_Date) Between '01-Feb-2015' And '09-Feb-2015'
Group By BrandID
Order by BrandID
表結構:
OrderID BrandID ModelID
1 abc a
1 abc b
1 abc c
2 def f
3 ghi a
3 ghi c
4 abc g
4 abc b
請在實現這一幫助。
是的,我試過相同,但它僅適用或者我是不是能夠計算出路時,我想這樣做: - 選擇Count(不同的OrderID) 從ordertable 凡TRUNC(Pur_Date)之間「 01 - 2月 - 2015' 年和09 -Feb-2015' 只有一個領域,但我希望通過組然後根據該BrandID顯出了獨特的計數。 請幫忙。 –
@SankarRaj這使訂單ID算作5品牌「ABC」,我想這是2 –