Mysql
 sql >> Datenbank >  >> RDS >> Mysql

So formatieren Sie die Zeit in MySQL auf '2:34 Std.', '0:34 Std.' usw

Ja, packen Sie es in TIME_FORMAT() :

SELECT operator_no, log_in_time,
       TIME_FORMAT(
           TIMEDIFF(log_in_time, log_out_time),
           '%H:%i hrs'
       ) AS Duration