DBA技能之:oracle表的管理.doc
文本预览下载声明
Oracle表管理
知识点总结:
1:表的创建:
1-1:简单创建:
-- Create table
create table ztest
(
id varchar2(10) not null,
name varchar2(30)
)
;
1-2:带约束条件:
-- Create table
create table ztest
(
id varchar2(10) not null,
name varchar2(30)
);
-- Add comments to the columns
comment on column ztest.id
is 工号;
comme
显示全部