I have data that is similar to this:
What I want to get back is
or, just the rows where this_id repeats because the other columns are dissimilar.
I think I've done something like this before, but today it has me stumped.
Thanks much,
Gooser
Code:
this_id eff_date other_columns
-------- --------- --------------
1 1/1/2000 blah, blah, blah
2 1/1/2000 yada, yada, yada
2 1/1/2004 dobe, dobe, dooo
3 1/1/2001 long, long, long
4 1/1/2005 this, that, uder
4 1/1/2009 this, dont, matr
What I want to get back is
Code:
this_id eff_date other_columns
-------- --------- --------------
2 1/1/2000 yada, yada, yada
2 1/1/2004 dobe, dobe, dooo
4 1/1/2005 this, that, uder
4 1/1/2009 this, dont, matr
or, just the rows where this_id repeats because the other columns are dissimilar.
I think I've done something like this before, but today it has me stumped.
Thanks much,
Gooser