📄 sys_customer.pdc
字号:
-- Create table
create table SYS_CUSTOMER
(
CUSTOMER_ID NUMBER(10) not null,
CUSTOMER_DESC VARCHAR2(200),
COMPANY_ID NUMBER(10),
COMPANY_DESC VARCHAR2(200)
)
tablespace SYSINFO
pctfree 10
initrans 1
maxtrans 255
storage
(
initial 64K
minextents 1
maxextents unlimited
);
-- Create/Recreate primary, unique and foreign key constraints
alter table SYS_CUSTOMER
add constraint PK_CUSTOMER_01 primary key (CUSTOMER_ID)
using index
tablespace SYSINFO
pctfree 10
initrans 2
maxtrans 255
storage
(
initial 64K
minextents 1
maxextents unlimited
);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -