Here's a tricky one.
I have data as follows:
User ID Name Skill Sets 1 Jim Install, Configure 2 Jack Install 3 John Configure, Setup, Blah 4 Bill Setup, Install
This isn't my design, and it's not an option to change the way the data is formatted. The trouble is that I need to group by the unique skill sets. Obviously a group by right now gives me:
Skill Set Count Install, Configure 1 Install 1 Configure, Setup, Blah 1 Setup, Install 1
Desired Output is:
Skill Set Count Install 3 Configure 2 Setup 2 Blah 1
Any Ideas? I could conceivably make a view that separates the skill sets into a normalized form (as it should be). But I'm not positive on the syntax for that either.