row_id = int
member_id =int
task_id = int
start_time = datetime
end_time = datetime
total_task_time = decimal
SELECT end_time-start_time from time_track where task_id=number
This will calculate the difference in seconds and output, but I was wondering is there any way for it to automatically do this, divide by 3600 (to get into hours) and insert it into the total_task_time? Not sure if this is possible. Please let me know
Thanks for your quick response! I am using MySQL. My coding is in php, so you would say it would be better to allow the php code to do it rather than having it go straight into the database like through a default value?
This goes along the same lines but in mysql query when I do select end_time-start_time from time_track where row_id=1 for example it gives me ā113.0ā meaning 1 minute 13 seconds is there a way to switch that formatting because you cant just do /60 in that case you would have to take the first number and then add a decimal for example 1.(13/60)