方法一:
在新建查询里执行一次就可以了,但是要选中这两表在哪个数据库中
前提是你的两表中没有任何数据,为Post表添加一个外键
use 数据库名[表已经建在哪个数据库中]
alter table Post add constraint postF_k foreign key (blogID) references BlogUser(blogID)
方法二:
先删除两表再拷贝代码在新建查询里执行一次就可以了,前提是选好你要建在哪个数据库中(use 数据库名)!
drop table BlogUser
drop table Post
use 数据库名[将表建在哪个数据库中]
create table BlogUser
(
blogID int identity(1,1) Constraint BlogUserP_k primary key not null,
blogName nvarchar(20)
)
create table Post
(
postID int identity(1,1) Constraint postP_k primary key not null,
postTile nvarchar(50),
postContent nvarchar(max),
blogID int constraint postF_k foreign key references BlogUser(blogID)
) |