sql >> Database >  >> RDS >> PostgreSQL

Seconden uit intervaltabel halen / record naar interval casten?

Ofwel dit

SELECT EXTRACT(epoch from dt)
from (
    SELECT time_col - lag(time_col) OVER (ORDER BY whatever) dt
    FROM myTable
    where conditions
) as dt

Of dit

SELECT
    extract(epoch from time_col - lag(time_col) OVER (ORDER BY whatever))
FROM myTable
where conditions



  1. Databaseback-ups - MariaDB Mariabackup en Percona Xtrabackup vergelijken

  2. R12.2 Online patching gereedheidsrapport

  3. SQLAlchemy DateTime tijdzone

  4. mysql-fouten detecteren zonder het uit te voeren