欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

文科生的SQL初体验之表的撰写

程序员文章站 2024-03-15 17:54:30
...

基本列的设置

primary key为主键,identity(种子,增量)
control+E直接执行

use dbtest
create table ClassInfo1
(
Cid int not null primary key identity(1,1),
CTitle nvarchar(10)
)

执行后表的样式如下:文科生的SQL初体验之表的撰写
Tips:
default(0)表示默认值为0 ;
不写null 表示默认为空;
check()检查

create table studentinformation
(
Sid int not null primary key identity(1,1),
Sname nvarchar(10) not null,
sGENDER bit default(0),
Sbirthday date,
Sphone char(11),
Semail varchar(20),
cid int not null,
)

可以看到创建结果如下:
文科生的SQL初体验之表的撰写

外键的建立

外键:foreign key(列名)references(列名)
在后面添加一句引用外键语句即可

foreign key (cid) references ClassInformation (cid)

可以看到外键已经被插入文科生的SQL初体验之表的撰写

相关标签: SQL 数据库

上一篇: 8、DockerHub

下一篇: SQL Server游标