- Schemas选项中的
trigger Functions
中新建触发函!数 - 弹出的窗口中的Definition选项中的
Return type
选择trigger
,language
选择plpgsql
- code选项卡填入下面代码
begin
new.updated_time = current_timestamp; // 这里的new 表示更新后的那一行数据对象,updated_time为字段名称
return new;
end
trigger Functions
中新建触发函!数Return type
选择trigger
,language
选择plpgsql
begin
new.updated_time = current_timestamp; // 这里的new 表示更新后的那一行数据对象,updated_time为字段名称
return new;
end