TIME_TO_SEC
Sintassi
TIME_TO_SEC(orario)
Spiegazione
Restituisce l'argomento orario convertito in secondi.
A partire da MariaDB 5.3, il valore restituito da TIME_TO_SEC
è di tipo DOUBLE
. Nelle versioni precedenti di MariaDB (e MySQL) il tipo era INT
. Si veda Microsecondi in MariaDB per ulteriori informazioni sulla funzionalità che ha introdotto questo cambiamento.
Esempi
MariaDB [(none)]> SELECT TIME_TO_SEC('22:23:00'); +-------------------------+ | TIME_TO_SEC('22:23:00') | +-------------------------+ | 80580 | +-------------------------+
MariaDB [(none)]> SELECT TIME_TO_SEC('00:39:38'); +-------------------------+ | TIME_TO_SEC('00:39:38') | +-------------------------+ | 2378 | +-------------------------+
Content reproduced on this site is the property of its respective owners,
and this content is not reviewed in advance by MariaDB. The views, information and opinions
expressed by this content do not necessarily represent those of MariaDB or any other party.