视图

由于PostgreSQL中的视图会被初始设定为只读,因此在执行INSERT语句之前,需要指令来允许更新操作。

允许PostgreSQL对视图进行更新
CREATE OR REPLACE RULE insert_rule
AS ON INSERT
TO ShohinJim DO INSTEAD
INSERT INTO Shohin VALUES (
    new.shohin_id,
    new.shohin_mei,
    new.shohin_bunrui,
    new.hanbai_tanka,
    new.shiire_tanka,
    new.torokubi);
删除关联视图
DROP VIEW ShohinSum CASCADE;

你可能感兴趣的:(视图)