zoukankan      html  css  js  c++  java
  • Sql Server 创建表(可重复执行--范本)

    use [GUOYOUZI.Study]
    
    if exists (select 1
       from sys.sysreferences r join sys.sysobjects o on (o.id = r.constid and o.type = 'F')
       where r.fkeyid = object_id('UnitPriceDetail') and o.name = 'FK_UNITPRICEDETAIL_FK_BASICINFO')
    alter table UnitPriceDetail
       drop constraint FK_UNITPRICEDETAIL_FK_BASICINFO
    go
    
    if exists (select 1
                from  sysobjects
               where  id = object_id('UnitPriceDetail')
                and   type = 'U')
       drop table UnitPriceDetail
    go
    
    /*==============================================================*/
    /* Table: UnitPriceDetail                                       */
    /*==============================================================*/
    create table UnitPriceDetail (
       UnitID               int                  identity,
       BasicInfoID          int                  null,
       Title                nvarchar(50)         null,
       UnitAmount           decimal(18,8)        null,
       Remark               nvarchar(200)        null,
       constraint PK_UNITPRICEDETAIL primary key (UnitID)
    )
    go
    
    declare @CurrentUser sysname
    select @CurrentUser = user_name()
    execute sp_addextendedproperty 'MS_Description', 
       '价明细表(UnitPriceDetail)',
       'user', @CurrentUser, 'table', 'UnitPriceDetail'
    go
    
    declare @CurrentUser sysname
    select @CurrentUser = user_name()
    execute sp_addextendedproperty 'MS_Description', 
       '基础信息主键',
       'user', @CurrentUser, 'table', 'UnitPriceDetail', 'column', 'BasicInfoID'
    go
    
    declare @CurrentUser sysname
    select @CurrentUser = user_name()
    execute sp_addextendedproperty 'MS_Description', 
       '标题',
       'user', @CurrentUser, 'table', 'UnitPriceDetail', 'column', 'Title'
    go
    
    declare @CurrentUser sysname
    select @CurrentUser = user_name()
    execute sp_addextendedproperty 'MS_Description', 
       '单价金额',
       'user', @CurrentUser, 'table', 'UnitPriceDetail', 'column', 'UnitAmount'
    go
    
    declare @CurrentUser sysname
    select @CurrentUser = user_name()
    execute sp_addextendedproperty 'MS_Description', 
       '备注',
       'user', @CurrentUser, 'table', 'UnitPriceDetail', 'column', 'Remark'
    go
    
    alter table UnitPriceDetail
       add constraint FK_UNITPRICEDETAIL_FK_BASICINFO foreign key (ID)
          references BasicInfo (ID)
    go
  • 相关阅读:
    media Queries实现一个响应式的菜单
    跨域资源共享(CORS)在ASP.NET Web API中是如何实现的?
    Media Formatters媒体格式化器
    Winform系列
    node-webkit入门
    WCF 自承载
    HttpClient的使用-爬虫学习1
    为什么程序员的工作效率跟他们的工资不成比例(转)
    大师们都是怎么撑场面的(转)
    马云关于企业发展的一些看法
  • 原文地址:https://www.cnblogs.com/JioNote/p/12145432.html
Copyright © 2011-2022 走看看