Claudio Succa <claudio.succa.ml@pertel.it> writes:
> Given a table like the following:
>
> CREATE TABLE mytable (
>     progr integer PRIMARY KEY,
>     record_creation_date date DEFAULT current_date,
>     ...
>     other columns
>     ...
> );
>
> is there a way to deny any modifications to 'record_creation_date'
> without using a view?
Sure, you can use a trigger.
-Doug