Re: [SQL] Adding a rule to update a last_changed field

Поиск
Список
Период
Сортировка
От Grant Kaufmann
Тема Re: [SQL] Adding a rule to update a last_changed field
Дата
Msg-id 19991022120954.B5228@intekom.com
обсуждение исходный текст
Ответы Re: [SQL] Adding a rule to update a last_changed field  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-sql
> > I'm trying to use a rule to maintain a last_changed field. 
> 
> Use a trigger, not a rule.  You can adjust the last_changed
> field before the tuple is stored that way.  There's an example
> in the manual's discussion of triggers.

My original choice was to use a trigger, but I don't want to introduce
C code when I don't have to. I don't believe that making external calls
should be necessary for a query that can be so simply expressed in SQL.

And from the manual: "The procedure name is the C function called"

If triggers can use SQL, I'd be happy to use them, but I can't find a single
example or description on how to do this.



В списке pgsql-sql по дате отправления:

Предыдущее
От: Grant Kaufmann
Дата:
Сообщение: Re: [SQL] Adding a rule to update a last_changed field
Следующее
От: Brook Milligan
Дата:
Сообщение: Re: [SQL] Adding a rule to update a last_changed field