i have a table team
select * from team
id player event date
- 1 1 a 18/12/2011
- 2 2 a 18/12/2011
- 3 3 a 18/12/2011
- 4 1 b 19/12/2011
- 5 3 b 19/12/2011
- 6 1 c 20/12/2011
Setup SQL:
SET DATEFORMAT dmy;
SELECT *
INTO #team
FROM (
SELECT 1 AS id, 1 AS player, 'a' AS event, Convert(SmallDateTime, '18/12/2011') AS Date
UNION SELECT 2, 2, 'a', '18/12/2011'
UNION SELECT 3, 3, 'a', '18/12/2011'
UNION SELECT 4, 1, 'b', '19/12/2011'
UNION SELECT 5, 3, 'b', '19/12/2011'
UNION SELECT 6, 1, 'c', '20/12/2011'
) AS teamdata
Now can I get the result like below from above table. THe player in the below resultset is based on the event in team above. In above team player, 1,2 and 3 have same event value in event (i.e a) so in the result set we just separate it in new columns and so on. 1 and 3 have same event COL3 (i.e b) and 1 have same event in COL3 (i.e c) in above table. ANyone can write a sql query to get the based on date following result.
how can i get this result
id player event date
- 2 2 a 18/12/2011
- 5 3 b 19/12/2011
- 6 1 c 20/12/2011
the rule is: get the latest event from the "team" table, across all players, by date