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

Postgres:come faccio a formattare un timestamp int come stringa di data leggibile?

Postgresql ha una pratica funzione integrata per questo:to_timestamp() . Avvolgi quella funzione attorno alla colonna che desideri:

Select a, b, to_timestamp(date_int) FROM t_tablename