I have a query that outputs the following,
A | Name1 | Date1
A | Name2 | Date2
B | Name1 | Date1
B | Name2 | Date2
I would like to see,
A | Name1 | Date1
B | Name1 | Date1
In some cases, there could be more than 2 duplicates for the first
column field.
I would just like the first row of each duplicate field found in column
1.
Please advise as to the SQL Syntax I may be able to use to complete
this.
Thanks in advance.
A | Name1 | Date1
A | Name2 | Date2
B | Name1 | Date1
B | Name2 | Date2
I would like to see,
A | Name1 | Date1
B | Name1 | Date1
In some cases, there could be more than 2 duplicates for the first
column field.
I would just like the first row of each duplicate field found in column
1.
Please advise as to the SQL Syntax I may be able to use to complete
this.
Thanks in advance.
Comment