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
  • 相关阅读:
    Java注释中的@deprecated与源代码中的@Deprecated
    android KE or NE分析
    Android手机中UID、PID作用及区别
    mtk刷机错误汇总
    区分Integer.getInteger和Integer.valueOf、Integer.parseInt() 的使用方法
    :>/dev/null 2>&1 的作用
    android 小技巧
    转:Eclipse自动补全功能轻松设置
    android开发常用地址
    转:大数据 2016 landscape
  • 原文地址:https://www.cnblogs.com/JioNote/p/12145432.html
Copyright © 2011-2022 走看看