insert rows into view

Поиск
Список
Период
Сортировка
От Ivan Horvath
Тема insert rows into view
Дата
Msg-id 20020307125323.41648.qmail@web14703.mail.yahoo.com
обсуждение исходный текст
Ответы Re: insert rows into view  (daq <daq@ugyvitelszolgaltato.hu>)
Re: insert rows into view  (daq <daq@ugyvitelszolgaltato.hu>)
Список 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 по дате отправления:

Предыдущее
От: Chris
Дата:
Сообщение: Re: Postmaster with -i
Следующее
От: daq
Дата:
Сообщение: Re: insert rows into view