I am trying to update a table column with below query.
UPDATE `prayer_times` SET `maghrib_jamat` = `maghrib` + .05;
I have two column maghrib_jamat and maghrib. In maghrib values are like 18:42 which is a time value with varchar type. I would like to add 5 minutes with maghrib and insert that value into maghrib_jamat column. I am getting error #1292 - Truncated incorrect DOUBLE value: '18:42'.
How can I do the task ?