current_timestamp on update current_timestamp 在 pgSQL 中怎么写
时间: 2023-04-01 19:00:21 浏览: 51
通过实例解析MySql CURRENT_TIMESTAMP函数
在 pgSQL 中,可以使用以下语句来实现 current_timestamp on update current_timestamp:
CREATE TABLE table_name (
column1 datatype DEFAULT current_timestamp,
column2 datatype DEFAULT current_timestamp ON UPDATE current_timestamp
);
其中,column1 的默认值为当前时间戳,而 column2 的默认值为当前时间戳,并且在更新时也会自动更新为当前时间戳。
阅读全文