-1
create table dbo.call (
subscriber_name varchar(64) not null
, event_date datetime not null
, event_cnt int not null
)
需要編寫一個返回每個查詢訂戶最小的日期事件的數量是可能的,而最大的年月日時事件的數量很少,事件的數量也很少。
結果:
subscriber_name | min_date | max_event_cnt | max_date | min_event_cnt
----------------------------------------------------------------------------------
Subscriber1 | 20091012 | 15 20061012 | 10 |
----------------------------------------------------------------------------------
Subscriber2 | 20080301 | 20 20090513 | 8 |
----------------------------------------------------------------------------------
可能重複的[T-SQL得到的每一天的最低和最高值(http://stackoverflow.com/questions/ 11283749/t-sql-get-min-and-max-value-for-every) – 2014-09-03 18:46:40