ORACLE基本DDL语句测试

语句类型 语句概要 SQL oracle–>zcbus是否支持
创建表 数值型 create table oracle_tab1 (test_1 number(38) primary key,test_2 number(38,29),test_3 integer,test_4 float(126),test_5 binary_float,test_6 binary_double);
字符型 create table oracle_tab2 (test_1 number(38) primary key,test_2 char(255),test_3 varchar2(4000),test_4 nvarchar2(2000),test_5 varchar(30));
日期型 create table oracle_tab3 (test_1 number(38) primary key,test_2 date,test_3 timestamp,test_4 TIMESTAMP WITH LOCAL TIME ZONE,test_5 TIMESTAMP WITH TIME ZONE);
lob及raw create table oracle_tab4 (test_1 number(38) primary key,test_2 blob,test_3 clob,test_4 long,test_5 raw(2000));
主键 create table oracle_tab5 (test_1 number(38,27),test_2 char(255),test_3 date,test_4 varchar2(4000),constraint pk_test12 primary key (test_1,test_2));
主键+外键 create table oracle_tab6 (test_1 number(38,27),test_2 char(255),test_3 integer,test_4 float(126),test_5 timestamp,constraint pk_test1 primary key (test_1,test_2),constraint fk_test foreign key(test_1,test_2) references oracle_tab5(test_1,test_2));
不常用类型 create table oracle_tab7 (test_1 nchar(200),test_2 real);
不常用类型 create table oracle_tab9 (test_1 nclob);
添加列 主键列 alter table oracle_tab7 add tab7_pk number(38); alter table oracle_tab7 add constraint tab7_pk1 primary key (tab7_pk);
特殊字段列 alter table oracle_tab7 add long_raw long raw;
含长度字段 alter table oracle_tab7 add tab7_var varchar2(4000);
不含长度字段 alter table oracle_tab7 add tab7_lob blob;
设为null alter table oracle_tab7 add tab7_null number(38) null;
设为not null alter table oracle_tab7 add tab7_not_null number(38) not null;
null+默认值 alter table oracle_tab7 add tab7_defa number(38) default 10 null;
not null+默认值 alter table oracle_tab7 add tab7_defa1 number(38) default 10 not null;
添加多列 alter table oracle_tab7 add (tab7_var2 varchar2(300),tab7_num2 number(38));
修改列属性 不含字段长度 alter table oracle_tab7 modify tab7_num2 number;
含字段长度 alter table oracle_tab7 modify tab7_var2 varchar(30);
null+默认值 alter table oracle_tab7 modify tab7_num2 number default 10 null;
not null+默认值 alter table oracle_tab7 modify tab7_num2 number default 10 not null;
删除表、列 删除列 alter table oracle_tab7 drop column tab7_null;
删除表 drop table oracle_tab7;
重命名表、列 修改列名 alter table oracle_tab7 rename column tab7_defa to tab7_defa2;
修改表名 alter table oracle_tab9 rename to oracle_tab8;
添加、删除约束及索引 建唯一索引 create unique index index_oracle_tab7 on oracle_tab7(test_2);
建唯一约束 alter table oracle_tab7 add constraint uni_cons_tab7_defa1 unique(tab7_defa1);
添加主键 alter table oracle_tab7 add constraint tab7_pk1 primary key (tab7_pk);
添加索引 create index index_tab1_test_2 on oracle_tab1(test_2);
添加约束 alter table oracle_tab7 add check(tab7_defa2 not like '%2%');
删除索引 drop index index_oracle_tab7;
删除约束 alter table oracle_tab7 drop constraint uni_cons_tab7_defa1;
删除主键 alter table oracle_tab7 drop primary key;
表、列加注释 表注释 comment on table oracle_tab7 is '这是一张测试表';
列注释 comment on column oracle_tab7.test_2 is '这是一个测试型字段';
分区表 建分区表 create table oracle_tab_p(msg_id VARCHAR2(16) primary key,result INTEGER,ts VARCHAR2(17),ts_time TIMESTAMP(6),insert_time DATE) partition by range (TS_TIME) (partition P20151204 values less than (to_date('20151204 00:00:00','yyyymmdd hh24:mi:ss')),partition P20181204 values less than ( to_date('20181204 00:00:00','yyyymmdd hh24:mi:ss') )); 仅建表,不支持分区
文档更新时间: 2021-11-01 22:56   作者:操李红