oracle sql: not able to add foreign key to table -> invalid identifier?
问题 First off, I'm a real newbie to db and sql. However, I have to tables, PERSON and SPECIES and I want to add a foreign key to the table SPECIES. When trying to add the foreign key I always get the error message "ORA-900904: invalid identifier". I just can't figure out what I've done wrong and why it doesn't work?!?! This was my approach: PERSON table and primary key create table person ( name varchar2 (30), firstname varchar2 (30), persid number (8) not null ) ; alter table person add