我有一个基本表单,我正在尝试使用多个交互式网格来构建它,但我似乎无法正常工作。
这是表格的细分,我有 4 个部分,其中 3 个我想成为 IG,因为用户必须输入多个值。
第 1 部分是位置信息。
第 2 部分是第一个 IG。
第 3 节是第二个 IG。
稍后我可能还会有另外 2 个 IG。
我认为我可以使用一张表格来完成此表格。
一个示例,如果用户填写了位置信息,则第 2 部分和第 3 部分可能有多个条目,所有这些都工作正常,但位置信息不会重复到第 2 部分和第 3 部分。
感谢您的帮助。
一张桌子?当然,您可以,但您不应该。标准化数据模型和
product
连接类似这样的:
create table location
(loc_id number primary key,
loc_name varchar2(20) not null,
loc_number number,
...
);
create table product
(prod_id number primary key,
loc_id number constraint fk_prod_loc references location (loc_id),
row_type varchar2(2) constraint ch_rowtype check (row_type in ('RE', 'TU'),
serial number not null,
...
);