业务不是很清楚的说,比如:调查船、站是否需要维护的。如果需要,基本可以分调查船、站、调查记录这几个表。如
create table 调查船  (
   调查船ID                NUMBER(6)                        not null,
   调查船名称                VARCHAR2(6)                      not null,
   ...
)
/
create table 站  (
   站ID                  NUMBER(6)                        not null,
   站名                   VARCHAR2(10)                     not null,
   ...
)
/
create table 调查记录  (
   记录ID                 NCHAR(10)                        not null,
   调查船ID                NCHAR(6)                         not null,
   站ID                  NCHAR(6)                         not null,
   ....
)
/
alter table 调查记录
   add constraint FK_调查记录_REFERENCE_调查船 foreign key (调查船ID)
      references 调查船 (调查船ID)
/
alter table 调查记录
   add constraint FK_调查记录_REFERENCE_站 foreign key (站ID)
      references 站 (站ID)
/