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

Come convertire l'epoca di Unix in un timestamp

to_char() converte un numero, una data o un timestamp in una stringa, non viceversa.

Vuoi to_timestamp()

Converti epoca Unix (secondi da 1970-01-01 00:00:00+00) in timestamp

Quindi applica quella funzione sulla tua colonna

SELECT lt,dw,up,to_timestamp(uxts) as uxts 
from products;

Ciò presuppone che uxts sia un tipo di dati numerico (integer , bigint o double precision )