sql >> Base de Datos >  >> RDS >> PostgreSQL

Seguimiento de la última marca de tiempo de modificación de una fila en Postgres

En postgresql, debe usar un disparador. Puede seguir este enlace sobre cómo hacerlo https://x- team.com/blog/automatic-timestamps-with-postgresql/ .

Para resumir el artículo puedes hacer lo siguiente:

  1. Cree la función Pl/Pgsql que se activará:

    CREATE OR REPLACE FUNCTION trigger_set_timestamp()
    RETURNS TRIGGER AS $$
    BEGIN
      NEW.updated_at = NOW();
      RETURN NEW;
    END;
    $$ LANGUAGE plpgsql;
    
  2. Crea tu tabla

    CREATE TABLE mytable (
      id SERIAL NOT NULL PRIMARY KEY,
      content TEXT,
      updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
    );
    
  3. Y finalmente agregue el disparador:

    CREATE TRIGGER set_timestamp
    BEFORE UPDATE ON mytable
    FOR EACH ROW
    EXECUTE FUNCTION trigger_set_timestamp();
    

Puede encontrar más información sobre la pregunta aquí:https://dba.stackexchange.com/questions/58214/getting-last-modification-date-of-a-postgresql-database-table

Espero que te ayude.