Guest_imported
New member
- Jan 1, 1970
- 0
Consider the following table:
Name Skill
---- -----
John ASP
John VB
John C++
George ASP
George Java
George C#
Tom C#
Tom C++
I want to find the people who has both the skills of ASP, and C#.
Apparently "Union" isnot the right command to use:
(Select Name from table where Skill="ASP" UNION
(Select Name from table where Skill="C#"
But what SQL command to use?
Thanks a lot.
Name Skill
---- -----
John ASP
John VB
John C++
George ASP
George Java
George C#
Tom C#
Tom C++
I want to find the people who has both the skills of ASP, and C#.
Apparently "Union" isnot the right command to use:
(Select Name from table where Skill="ASP" UNION
(Select Name from table where Skill="C#"
But what SQL command to use?
Thanks a lot.