Comparison operator ALL
What's the select statement to pull a list of employees who have kids named "Jack" AND "James".
Some examples:
Employee A with one kid named "Jack"=not qualified
Employee B with four kids named "Jack", "Jane", "Jim" and "James"=qualified
Employee C with three kids named "John", "James" and "Jill" =not qualified
Comparison Operator IN wouldn't work because it would pull B and C also while ALL would fetch none.
Thanks for your help,
Some examples:
Employee A with one kid named "Jack"=not qualified
Employee B with four kids named "Jack", "Jane", "Jim" and "James"=qualified
Employee C with three kids named "John", "James" and "Jill" =not qualified
Comparison Operator IN wouldn't work because it would pull B and C also while ALL would fetch none.
Thanks for your help,
0