Question

I have SQL query which returns average utilization for some worker for previous year.

SELECT Name, AVG (hsum)
FROM
(
    SELECT Name,sum((number_hours)/8)*100 AS hsum
    FROM
    T1
    WHERE name='PERSON_A' and bookeddate>='2012-01-01' and booked_date<='2012-12-31'
    GROUP BY name,booked_date
) t

Now I want to exclude weekends for booked date for calculation? how to do it? I am using mysql thank you

Was it helpful?

Solution

Add DAYOFWEEK() to your WHERE clause:

 AND DAYOFWEEK(booked_date) <> 1 AND DAYOFWEEK(booked_date)<>7
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top