1. ホーム
  2. sql

[解決済み] PostgreSQL: Unixのエポックから日付への変換方法は?

2023-02-28 18:20:53

質問

日付と時刻が表示されます。

日付だけ(時間ではなく)を返すようにステートメントを修正するにはどうしたらよいでしょうか。

SELECT to_timestamp( TRUNC( CAST( epoch_ms AS bigint ) / 1000 ) );

どのように解決するのですか?

あなたは to_timestamp 関数を使用して、タイムスタンプを date

 select to_timestamp(epoch_column)::date;

詳細はこちら

/* Current time */
 select now();  -- returns timestamp

/* Epoch from current time;
   Epoch is number of seconds since 1970-01-01 00:00:00+00 */
 select extract(epoch from now()); 

/* Get back time from epoch */
 -- Option 1 - use to_timestamp function
 select to_timestamp( extract(epoch from now()));
 -- Option 2 - add seconds to 'epoch'
 select timestamp with time zone 'epoch' 
         + extract(epoch from now()) * interval '1 second';

/* Cast timestamp to date */
 -- Based on Option 1
 select to_timestamp(extract(epoch from now()))::date;
 -- Based on Option 2
 select (timestamp with time zone 'epoch' 
          + extract(epoch from now()) * interval '1 second')::date; 

あなたの場合

 select to_timestamp(epoch_ms / 1000)::date;

PostgreSQLのドキュメント