zoukankan      html  css  js  c++  java
  • 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,返回顶部
     
    warn 作者:ylbtech
    出处:http://storebook.cnblogs.com/
    本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。
  • 相关阅读:
    交互式监控工具glances
    性能测试工具Locust
    CentOS 7 安装 PostgreSQL 教程
    Vue表单
    Vue事件处理
    Vue列表渲染
    Vue条件渲染
    Vue中class与style绑定
    GIT命令操作
    Git简介
  • 原文地址:https://www.cnblogs.com/ylbtech/p/9185892.html
Copyright © 2011-2022 走看看