Not sure how to approach this as I keep going in circles. I want to return ID's that soley have keyword='ISV' and no other keyword. I tried some count(*)=1 and 'GROUP BY' but it does not seem to work.
Example Table
id keyword
== =======
A ISV
A Reseller
A Foo
B ISV
C ISV
D Foo
D ISV
So the desired result would just id of B,C while A,D are ignored because they have additional keywords.
Thanks for any direction.
Example Table
id keyword
== =======
A ISV
A Reseller
A Foo
B ISV
C ISV
D Foo
D ISV
So the desired result would just id of B,C while A,D are ignored because they have additional keywords.
Thanks for any direction.