Subject Re: Illegal use of keyword VALUE
Author dr_bentonquest
> I'm getting the above error message when trying to execute this:
>
> alter table machines
> add norma numeric(6,2)
> default 1
> not null
> check (value > 0)

Duh. Should be

> check (norma > 0)

Regards,

-Benton