user511345
user511345

Reputation:

PostgreSQL table: How can I find a list of values that were inserted during a given time period?

Is there a Postgres function that would allow me to find which values were inserted during/after a giving time period, even if that given table/row does not have a timestamp value?

Upvotes: 3

Views: 94

Answers (1)

Magnus Hagander
Magnus Hagander

Reputation: 25078

No. You can find the involved transaction ids by looking at the hidden system columns xmin and xmax, but you can't find the timestamp.

Upvotes: 1

Related Questions