Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
Why on 18/12 you choose that row with 2 2? And why for 19/12 you get 5 3? Which rule do you use? – Marco Dec 21 '11 at 8:43
Isn't too much clear what you want to do. Please, add details to your questions. – DonCallisto Dec 21 '11 at 8:43
No rule is setting first should be 33 18/12/2011 – user319198 Dec 21 '11 at 8:44
2  
Is it really the case that you want the most recent row for whatever the second column is? – Rowland Shaw Dec 21 '11 at 8:44
There must be predefined criteria/criterion for selecting any record from your table, tell us what they are so that we can help. – Chibuzo Dec 21 '11 at 8:48
show 5 more comments

closed as not a real question by RB., Pondlife, Mikael Eriksson, Unsliced, Eranga Dec 21 '11 at 9:23

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Select * from Team where id in (2, 5, 6)
share|improve this answer
1  
I was going to upvote for the humour value, but then I read the tooltip on the upvote button... Is it useful? Probably not... – Tao Dec 21 '11 at 9:05
i went to get latest event in all player based on date.. – Periyasamy M Dec 21 '11 at 9:07
question is closed. but can try this: order records in DESC order...select TOP 1 record in DISTINCT dates...I think this is what you are looking for – rapsalands Dec 21 '11 at 9:33

Not the answer you're looking for? Browse other questions tagged or ask your own question.