DBS:TestSystem
ylbtech-DBS:TestSystem |
A, 返回顶部 |
2、
-- ================================= -- 类别表 -- ================================= 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());
1、
B,返回顶部 |
2、
1、
C,返回顶部 |
2、
1、
D,返回顶部 |
2、
1、
E,返回顶部 |
2、
1、
F,返回顶部 |
2、
1、
G,返回顶部 |
2、
1、
H,返回顶部 |
作者:ylbtech 出处:http://storebook.cnblogs.com/ 本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。 |