我正在练习数据库创建、表空间和表实现。我有一个问题,我在互联网上搜索了一些想法,但没有一个与我现在所拥有的完全一致。我的问题是是否可以创建一个使用外键的表,该外键引用不同表空间中的另一个表列。甲骨文 SQL。
create table agent(
code Number(4),
name varchar(30),
area Number(4),
constraint pk_Code primary key (code),
constraint fk_Area foreign key (area) references Warehouse(code))
tablespace sales;