Hi All,
Suppose there is a table as below :
SkillName SkillCode Beginner Proficient Experienced
Java 001 2 0 0
Java 001 0 3 0
Java 001 0 0 1
The above table suggests that for the skill Java,there are 2 Beginners,3 Proficient and 1 Experienced people.
I need to write a query which will query the above table and retrieve the results in the form given below :
SkillName SkillCode Beginner Proficient Experienced
Java 001 2 3 1
Can anyone explain me as to how to go about this?A example would be much better.Thanks in advance.