1 Star 0 Fork 0

阳光灿烂的日子/golangMsOffice

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
建表模板.txt 1.36 KB
一键复制 编辑 原始数据 按行查看 历史
阳光灿烂的日子 提交于 2015-04-14 22:33 . 2015-04-14
-- Create table
create table MST_供应商
(
供应商代码 VARCHAR2(30) default 'NONE' not null,
供应商编码 VARCHAR2(30) default 'NONE' not null,
助记码 VARCHAR2(40) default 'NONE' not null,
供应商名 VARCHAR2(200) default 'NONE' not null,
供应商简称 VARCHAR2(50) default 'NONE' not null,
供应商类型 VARCHAR2(20) default 'NONE' not null,
供应商业态 VARCHAR2(20) default 'NONE' not null,
所属地区 VARCHAR2(20) default 'NONE' not null,
所在城市 VARCHAR2(20) default 'NONE' not null,
内部标记 CHAR(1) default 'N' not null,
有效标记 CHAR(1) default 'Y' not null,
对照数量 INTEGER default 0 not null,
创建时间 DATE default SYSDATE not null,
更新时间 DATE default SYSDATE not null,
更新类型 CHAR(1) default 'I' not null,
处理结果id CHAR(2) default '00' not null,
处理结果 VARCHAR2(1000) default 'NONE' not null
)
tablespace ELINK11
pctfree 10
pctused 40
initrans 1
maxtrans 255
storage
(
initial 64K
minextents 1
maxextents unlimited
);
-- Create/Recreate primary, unique and foreign key constraints
alter table MST_供应商
add constraint PK_MST_供应商 primary key (供应商代码)
using index
tablespace ELINK11
pctfree 10
initrans 2
maxtrans 255
storage
(
initial 64K
minextents 1
maxextents unlimited
);
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/yinqunjun/golangMsOffice.git
[email protected]:yinqunjun/golangMsOffice.git
yinqunjun
golangMsOffice
golangMsOffice
master

搜索帮助