カテゴリに属するすべてのレコードをカウントし、最新のレコードに関連付けられたデータを次のように取得したい
CREATE TABLE #TestTable
(
SomeColumn VARCHAR(1)
,data varchar(50)
,CDate datetime
)
GO
INSERT INTO #TestTable VALUES ('A','abdss',getdate())
INSERT INTO #TestTable VALUES ('A','abserts',getdate())
INSERT INTO #TestTable VALUES ('A','awabs',getdate())
INSERT INTO #TestTable VALUES ('A','abrfgts',getdate())
INSERT INTO #TestTable VALUES ('A','abasds',getdate())
INSERT INTO #TestTable VALUES ('A','abasds',getdate())
INSERT INTO #TestTable VALUES ('A','aberzsdsfs',getdate())
INSERT INTO #TestTable VALUES ('A','abarfzdfs',getdate())
INSERT INTO #TestTable VALUES ('B','abzdsfs',getdate())
--SELECT * , COUNT(SomeColumn) From #TestTable
--GROUP BY SomeColumn
drop table #TestTable
必要な出力は
SomeColumn | Data | Date |Other Associates Records <br/>
A | abarfzdfs |last A record date |7<br/>
B | abzdsfs |last B record date |0<br/>