实际工作中,在数据库中创建表是经常会用到的。我们今天呢?主要给大家来分享一下在数据库如何通过sql语句去创建表。其实,创建表很简单,只需要把数据库的数据类型和约束搞清楚就可以了,其他的就好说了。接下来呢,开始我的表演。首先,先使用plsql连接到oracle数据库,先保证下面的服务是开启的。
我们本次创建表的需求是:创建一张班级表,和一张学生表。
1.首先班级表作为主表也就是所谓的主键。在主表中我们这里使用的约束是primarykey 和not null (当然不局限于这些)
create table classinfo(
classid number(2) primary key,
classname varchar(10) not null
);
sql解析:
--create table 创建表的关键字
--classinfo 是创建的表的名字
--classid 是班级表的id 数据类型是number(2)类型,我们默认给了2个长度,我们将班级id设置为主键方便其他外键关联
--classname 是班级名字 数据类型是字符型varchar(10),我们给了默认10个字符长度,班级名的约束是不能为空
执行sql语句:
classinfo表创建成功。
2.然后我们建立一个外键,也就是关联到主键的一个表,使用的数据类型和约束请看下面的sql语句。
create table studentinfo(
studentid number(2) primary key,
studentname varchar(10) not null,
studentsex char(2) check(studentsex='男' or studentsex='女'),
studentage number(2) not null,
studenttel number(11) unique,
studentaddress varchar(50) default '上海',
classid number(2) references classinfo(classid)
);
sql语句解析:
--create table 创建表的关键字
--studentinfo();是创建学生信息表的表名
--studentid(学生id) 约束是主键 primary key
--studentname(学生姓名) 约束是 not null
--studentsex(学生性别) 约束是 check
--studentage(学生年龄) 约束是 not null
--studenttel(学生电话) 约束是 unique
--studentaddress(学生地址) 分别为学生表中的列名。
学生表studentinfo建立完成。
完整的sql语句如下:
create table classinfo(
classid number(2) primary key,
classname varchar(10) not null
);
create table studentinfo(
studentid number(2) primary key,
studentname varchar(10) not null,
studentsex char(2) check(studentsex='男' or studentsex='女'),
studentage number(2) not null,studenttel number(11) unique,studentaddress varchar(50) default '上海',classid number(2) references classinfo(classid));
到此,我们创建的班级表和学生表就演示完了,是不是很简单呢?
本文分享自微信公众号 - 程序员的成长之路(cxydczzl)。
如有侵权,请联系 support@oschina.cn 删除。
本文参与“OSC源创计划”,欢迎正在阅读的你也加入,一起分享。