I have been given a schema in informix that contains a statement that looks like this:
alter table "itis".synonym_links add constraint (foreign key
*(tsn_accepted)* references "itis".*taxonomic_units* constraint
"itis".supercede)
This alter table command references the column *tsn_accepted* in the
*taxonomic_units* table yet there is no such column in that table.
There however is a *tsn* in column taxonomic_units. A column named*
tsn_accepted* is found in the *synonym_links* table. Should the
instructions read (see below) or am I just reading the instructions
incorrectly?
alter table "itis".synonym_links add constraint (foreign key
(tsn) references "itis".taxonomic_units constraint
"itis".supercede)
What does the command 'supercede' mean?