SQL> desc testa;
Name Type          Nullable Default Comments 
---- ------------- -------- ------- -------- 
ID   NUMBER                                  
NAME VARCHAR2(100) Y                         SQL> desc testb;
Name Type          Nullable Default Comments 
---- ------------- -------- ------- -------- 
ID   NUMBER        Y                         
NAME VARCHAR2(100) Y                         
SQL> alter table testb
  2  add constraint ff_o foreign key(id)
  3  references testa(id)
  4  /Table alteredSQL> 
没什么问题啊.你的表CT03中有数据吗?