“Postgres Inserte la marca de tiempo sin zona horaria” Código de respuesta

Postgres Inserte la marca de tiempo sin zona horaria


            
                
            
         INSERT INTO timestamp_demo (ts, tstz)
VALUES('2016-06-22 19:10:25-07','2016-06-22 19:10:25-07');Code language: SQL (Structured Query Language) (sql)
Determined Donkey

PostgreSQL Cambio horario en la marca de tiempo sin zona horaria

-- You have an issue where entries in the database are recorded in local time without the timezone
-- Postgresql assumes that these entries are in fact UTC
-- This corrects these entries by converting them to actual UTC
-- You might want to update the column (from timestamp) to a timestamptz, then perform the command below
UPDATE <table>
SET <timestamptz_field> = 
  (<timestamptz_field> AT TIME ZONE 'UTC') AT TIME ZONE '<correct_time_zone>';
  
-- e.g start_date_time before = '2021-07-29 18:15:16+00' (This is from a location at GMT+2)
-- start_date_time after = '2021-07-29 16:15:16+00' (This is the actual UTC timestamp)
UPDATE public.uut_result
	SET start_date_time= (start_date_time at time zone 'utc') at time zone 'Africa/Harare'
Muddy Moose

Respuestas similares a “Postgres Inserte la marca de tiempo sin zona horaria”

Preguntas similares a “Postgres Inserte la marca de tiempo sin zona horaria”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código