So I have a table: Stuff
Keys are : Happ, RecordID, KeyID
Rows
Happ: RecordID: KeyID: Description
ABC R1234 C001 Mike
ABC R1234 Default Default for All
ABC R1235 Default Default test
ABC R1236 Default Default Guess
ABC R1237 C0001 Mikes Bio
ABC R1237 Default default Bio
What I want is:
All Records with unique RecordID for KeyID='C0001'
and then those records where there was NOT a unique value for C0001,
returned back 1 one record set
So at the end of the query, in one recordset, the following would be returned
ABC R1234 C001 Mike
ABC R1235 Default Default test
ABC R1236 Default Default Guess
ABC R1237 C0001 Mikes Bio
My attempts of doing a Select have all failed.
Thanks