PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Come arrotondare il valore dei millisecondi da timestamp (0) in PostgreSQL?

Puoi utilizzare la funzione date_trunc :

SELECT date_trunc('seconds', '2018-04-19 10:43:13.719'::timestamp);