一.创建测试表 CREATE TABLE weather( city ), temp_lo int, --最低温度 temp_hi int, --最高温度 prcp real, --湿度 date date ); 二.创建触发器函数 create or replace function table_update_notify() returns trigger as $$ begin perform pg_notify('table_update',json_build_object('tabl