Hi,
I have a table similar to the following example:
ColumnA ColumnB
==================
A 01/02/2006
B 10/10/2005
A 01/01/2006
C 10/10/2005
D
E 11/10/2005
I would appreciate help in writing a query that will capture data like this:
ColumnA ColumnB
==================
A 01/01/2006
B 10/10/2005
C 10/10/2005
E 11/10/2005
Basically, doesn't matter how many times a value under ColumnA may re-appear, only the one with oldest date would be captured by the query.
Thanks,
Mike
I have a table similar to the following example:
ColumnA ColumnB
==================
A 01/02/2006
B 10/10/2005
A 01/01/2006
C 10/10/2005
D
E 11/10/2005
I would appreciate help in writing a query that will capture data like this:
ColumnA ColumnB
==================
A 01/01/2006
B 10/10/2005
C 10/10/2005
E 11/10/2005
Basically, doesn't matter how many times a value under ColumnA may re-appear, only the one with oldest date would be captured by the query.
Thanks,
Mike