Hi,
I have a table "results" with 2 columns, "agentid" and "date". Records are:
agent1 - 29/03/2011 08:00:00
agent1 - 29/03/2011 08:30:00
agent1 - 29/03/2011 09:00:00
agent2 - 29/03/2011 08:10:00
agent2 - 29/03/2011 08:30:00
I would like to show the first record (or first date) for every agent -> So, the result would be 2 records:
agent1 - 29/03/2011 08:00:00
agent2 - 29/03/2011 08:10:00
SELECT TOP 1 .... only shows the first record. Hope anybody can help me...
I have a table "results" with 2 columns, "agentid" and "date". Records are:
agent1 - 29/03/2011 08:00:00
agent1 - 29/03/2011 08:30:00
agent1 - 29/03/2011 09:00:00
agent2 - 29/03/2011 08:10:00
agent2 - 29/03/2011 08:30:00
I would like to show the first record (or first date) for every agent -> So, the result would be 2 records:
agent1 - 29/03/2011 08:00:00
agent2 - 29/03/2011 08:10:00
SELECT TOP 1 .... only shows the first record. Hope anybody can help me...