Dear Freinds,
I want to mention "Late Coming and Early Going" in my data through SQL.
Below is query to get the time.
SELECT TO_char(TIMEIN,'HH24:MI') TIMEIN,TO_char(TIMEOUT,'HH24:MI') TIMEOUT from ATTENDANCE
TIMEIN TIMEOUT
08:00 17:15
08:13 17:02
08:25 17:00
Data is like above. I want if the timein is above 08:00 its should be marked as "Late" in status field and same should be with the timeout if time is before 17:00 it should be marked as "Early".
Please help.
Regards
Kam