-- =================================
-- 类别表
-- =================================
create table TCategory
(
Id int primary key identity(101,1), --编号【PK,ID】
Name varchar(max), --名称
Intro varchar(max), --介绍
CreateTime DATETIME NOT NULL,
IsDeleted BIT NOT NULL DEFAULT 0
)
insert into TCategory(Name,Intro,CreateTime) values(‘abc‘,‘abc intro‘,GETDATE());
select * from TCategory
-- =================================
-- 产品表
-- =================================
-- drop table TProduct
create table TProduct
(
Id int primary key identity(101,1), --编号【PK,ID】
CategoryId int, --类别Id【FK】
Name varchar(max), --名称
Src varchar(max), --网址
[Type] int, --类别 1:测试环境 2:原型图
Intro varchar(max), --账户资料
CreateTime DATETIME NOT NULL,
IsDeleted BIT NOT NULL DEFAULT 0
)
insert into TProduct(CategoryId,Name,Src,Type,Intro,CreateTime) values(101,‘p abc‘,‘https://www.baidu.com‘,1,‘‘,getdate());