Morning Guys,

I have the following tables:

 operator(ope_id, ope_name)
 ope_shift(ope_id, shift_id, shift_date) 
 shift(shift_id, shift_start, shift_end)

here is a better view of the data http://latinunit.net/emp_shift.txt

here is the screenshot of a select statement to the tables http://img256.imageshack.us/img256/4013/opeshift.jpg

im using this code

SELECT OPE_ID, COUNT(OPE_ID) AS Total_shifts
from operator_shift
group by ope_id;

to view the current total shifts per operator and it works, BUT if there was 500 more rows it would count them all aswell, THE QUESTION is, anyone has a better way of making my database work, or how can i tell the system that those rows are a whole month, i remember i friend said something about count then devide by 30 but im not sure, what if the month isnt finished? and you want to show the emp with highest shifts to date

link|improve this question
1  
Many people reading this are already in their evening? :) – iSid Apr 26 '10 at 11:44
As an aside, 'count them and divide by 30' is a bad idea. Even if the month is finished. Do all employees work 7 days a week? Do all months have 30 days? Just bad in general. – MJB Apr 26 '10 at 12:05
feedback

1 Answer

you need to add a where clause:

where shift_date in ('2010-04-01', '2010-04-30')

or alternately

where (shift_date >= '2010-04-01' AND shift_date < '2010-05-01')

You might need to fudge the date format to match your particular implementation.

link|improve this answer
In addition, if fields are date/time stamped, and you are looking for '2010-04-30', you can either change to < '2010-05-01' OR, change the date to include 11:59:59 pm to include any time within a given date. – DRapp Apr 26 '10 at 11:56
Yes, that's probably a better idea; updating answer to reflect. The fields are quite clearly date fields, tho', not datetime. :) – Williham Totland Apr 26 '10 at 11:59
im using this code select ope_id, count(shift_id) as Total_shifts from operator_shift where ope_shift_DATE in ('01-MAR-2010','30-MAR-2010') GROUP BY OPE_ID; but it shows the wrong data, say there are 500 rows of employees shifts for different days and months, how can i count which employee in that month has done the most shifts or so – user325427 Apr 26 '10 at 12:09
@DAVID: As I mention, you still have to coerce your select statement into the proper types; probably using to_date('2010-04-01','yyyy-mm-dd'), or whatever date format you want. 01-MAR-2010 is just a string representation generated by your SQL shell; it won't automatically fold strings back to dates for you. – Williham Totland Apr 26 '10 at 12:13
feedback

Your Answer

 
or
required, but never shown