If I have a table like this:
[tt]
FieldA FieldB FieldC FieldD
100 ABC Andy Brown
[red]100 ABC[/red] Susie White
[red]100 ABC[/red] Bobby Green
200 XYZ Billy Black
[red]200 XYZ[/red] Duffy Duck
300 JLK Bugs Bunny[/tt]
How can I create a SELECT statement to by-pass all [red]RED[/red] fields that repeat and have them as blanks?
So the output would be like this:
[tt]
FieldA FieldB FieldC FieldD
100 ABC Andy Brown
Susie White
Bobby Green
200 XYZ Billy Black
Duffy Duck
300 JLK Bugs Bunny[/tt]
Have fun.
---- Andy