Select from following answers:- SELECT COUNT(VacationHours) FROM Employee WHERE JobTitle LIKE 'Design Engineer%';
- SELECT SUM(VacationHours) FROM Employee WHERE JobTitle LIKE 'Design Engineer%';
- SELECT AVG(VacationHours) FROM Employee WHERE JobTitle LIKE 'Design Engineer%';
- All Above
This query finds the number of employees with the title Design Engineer who have values set for vacation hours other than NULL.
Show Correct Answer
Source: Microsoft Press | |
Alert Moderator