开发者

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

开发者 https://www.devze.com 2023-03-29 02:07 出处:网络
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?No.

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?


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.

0

精彩评论

暂无评论...
验证码 换一张
取 消