Mysql
 sql >> Database >  >> RDS >> Mysql

Come convertire il tempo in secondi nel formato HH:MM:SS in MySQL?

Puoi usare MySQL funzione SEC_TO_TIME() .

Esempio:

SELECT SEC_TO_TIME(2378);

L'output è:

00:39:38

Quindi nel tuo caso:

SELECT SEC_TO_TIME(test_duration) as `Time` FORM YOUR_TABLE;