I need to create a column (say idletime
) that will store time value having hours smaller or bigger than 24. When i try to insert such values bigger than 24 (For
example '80:00:00', '129:23:12', etc) , am getting the following error code:
java.sql.SQLException: Illegal hour value '80' for java.sql.Time type in value '80:00:00.
at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:964)
.....
I have searched over the Internet and found that the TIME datatype ranges from 00:00:00 to 23:59:59 and does not reach 24:00:00.
Is there any solution available for my problem? Am executing this insert query within a stored procedure.
I think I understand the use case, but I'm not sure I would elect to use the time datatype for the solution. It might as well be some sort of int datatype and named idle_time_in_seconds
You might also choose milliseconds if you need to be more exact.