1
在PostgreSQL中更新行时更新时间戳
在MySQL中,我们可以在changetimestamp每次更改行时在其中更新列的地方执行此操作: create table ab ( id int, changetimestamp timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP ); 在PostgreSQL中有类似的事情吗?