[EMAIL PROTECTED] writes:
> CREATE TABLE ninhada (
> c_id_mae int,
> n_id int,
> c_id_pai int,
> n_dta_nasc date,
> PRIMARY KEY (n_id, c_id_mae),
> FOREIGN KEY (c_id_mae) REFERENCES caes (c_id)
>ON DELETE CASCADE,
> FOREIGN KEY (c_id_pai) REFERENCES caes (c_id)
Pedro Alves ([EMAIL PROTECTED]) reports a bug with a severity of 2
The lower the number the more severe it is.
Short Description
CHECK evaluation error when using more than one table
Long Description
Creating a table with the code shown, everytime I try to insert values I get the same
"ERROR: E