Oracle中建表和指定表空间--建⼀个表
create table HH2(
tid number primary key ,--主键设定
tname varchar2(20)
企业性质分类标准);
--删除表
drop table HH;
--表空间(相当于⼀个数据库)(DBA权限)
create tablespace test
暗黑3职业排名>适合年会表演的歌曲datafile 'D:test.dbf'
size 10M
autoextend on
next 10M
maxsize 100M
--指定表在那个表空间⾥⾯(默认在USERS表空间⾥)
create table HH(tid number primary key)
中秋假期高速公路免费吗tablespace test;
select * from tabs;
--删除表空间
drop tablespace test including contents and datafiles --连带物理⽂件和表空间中的数据也⼀起删除--建表建约束
create table student1(
sid number primary key ,
sname varchar2(20) not null,
sage number,
ssex char(2),
saddress varchar2(100),
cid number references tclass(cid)--建⽴外键关系
);
create table tclass
(
cid number primary key,
指环王导演cname varchar2(20)
);
-
-唯⼀unique 检查 check 默认值 modify 添加外键关系添加列
alter table student1 add constraint UQ_student1_sname unique(sname);
alter table student1 add constraint CK_student1_agae check(sage between 19 and 70);
alter table student1 modify ssex default '男';
alter table student1 add constraint FK_student1_cid foreign key(cid) references tclass(cid);
alter table student1 add dt date;
军训感受500字--删除约束
alter table student1 drop constraint UQ_student1_sname ;
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论