insert rows into view - Mailing list pgsql-novice

From Ivan Horvath
Subject insert rows into view
Date
Msg-id 20020307125323.41648.qmail@web14703.mail.yahoo.com
Whole thread Raw
Responses Re: insert rows into view
Re: insert rows into view
List pgsql-novice
how can i insert/update/delete a row into a view?
i read in the manual that i have to use a rule for the
table, but for me it is not working.

here are the codes for the view, and the rule:
DROP VIEW plant_unit_view;
CREATE VIEW plant_unit_view AS SELECT * FROM
plant_unit;

DROP RULE plant_unit_rule;
CREATE RULE plant_unit_rule AS
    ON INSERT TO plant_unit
        DO INSTEAD INSERT INTO plant_unit
            (pu_code, pu_name, unit_id, pu_type,
job_id, mod_user, mod_date)
            VALUES
            (new.pu_code, new.pu_name, new.unit_id,
new.pu_type, new.job_id, new.mod_user, new.mod_date);

Ivan


__________________________________________________
Do You Yahoo!?
Try FREE Yahoo! Mail - the world's greatest free email!
http://mail.yahoo.com/

pgsql-novice by date:

Previous
From: Chris
Date:
Subject: Re: Postmaster with -i
Next
From: daq
Date:
Subject: Re: insert rows into view