使用sql脚本导入表结构,直接 附带表的 约束、列的注释。真的可以哦
sql语句如下:
create table test01
(
ID VARCHAR2(100) not null,
constraint PK_销售单信息表 primary key (ID)
);
comment on column test01.ID is
'系统ID';
power designer 中模型如下:
是不是很方便?
使用sql脚本导入表结构,直接 附带表的 约束、列的注释。真的可以哦
sql语句如下:
create table test01
(
ID VARCHAR2(100) not null,
constraint PK_销售单信息表 primary key (ID)
);
comment on column test01.ID is
'系统ID';
power designer 中模型如下:
是不是很方便?