再次根據其他數據集對數據進行統計。試圖根據另一個參數獲取數據的統計信息
我有一個客戶名單。像下面這樣:
CustomerID Value Date
1 3 01/01/2017
2 2 01/02/2017
3 1 01/02/2017
1 5 01/04/2017
1 6 01/04/2017
2 1 01/04/2017
2 2 01/04/2017
我想獲得一個平均日期範圍的天凡客2還具有價值的客戶1。有人有想法嗎?
例如
Select avg(value)
from Table where customerid=1
and (customer 2 values are not blank)
and date between '01/01/2017' and '01/31/2017'
我使用SQL Server Express 2012
你想一個平均的所有天或每天一個平均? –