Unix_timestamp

Publicado el 03 junio 2014 por Jamesrevelo @herprogramacion
La función UNIX_TIMESTAMP de MySQL retorna en la cantidad de segundos transcurridos desde la fecha 1970-01-01 00:00:00 UTC hasta una fecha dada. Si la función es llamada sin parámetros el resultado será considerado con la fecha y tiempo actual.

Sintaxis

UNIX_TIMESTAMP()UNIX_TIMESTAMP(fecha)
Ejemplos
SELECT UNIX_TIMESTAMP() AS SEGUNDOS
SELECT UNIX_TIMESTAMP('2010-04-23')AS SEGUNDOSJames Revelo Urrea - Desarrollador independiente