标签: mysql rounding
如何在mysql栏中将时间缩短到最接近的15分钟working_hours HH:MM:SS 我尝试了以下内容:
HH:MM:SS
UPDATE student SET `working_hours` = REPLACE(working_hours,SUBSTRING_INDEX(working_hours, ' ', -1), SEC_TO_TIME((TIME_TO_SEC(working_hours) DIV 60) * 60))
这只是向下舍入到最接近的季度
由于