album.txt
上传用户:wenllgg125
上传日期:2020-04-09
资源大小:7277k
文件大小:1k
源码类别:

SCSI/ASPI

开发平台:

Others

  1. 
  2. if exists (select * from dbo.sysobjects where id = object_id(N'[dnt_phototags]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
  3. drop table [dnt_phototags]
  4. ;
  5. CREATE TABLE [dnt_phototags] (
  6. [tagid] [int] NOT NULL ,
  7. [photoid] [int] NOT NULL 
  8. ) ON [PRIMARY]
  9. ;
  10. ALTER TABLE [dnt_phototags] WITH NOCHECK ADD 
  11. CONSTRAINT [DF_dnt_phototags_tagid] DEFAULT (0) FOR [tagid],
  12. CONSTRAINT [DF_dnt_phototags_pid] DEFAULT (0) FOR [photoid]
  13. ;
  14. IF NOT EXISTS(
  15. SELECT  *
  16. FROM    syscolumns
  17. WHERE   id = ( SELECT   id
  18.                FROM     sysobjects
  19.                WHERE    name = 'dnt_photos'
  20.              )
  21.         AND name = 'width')
  22.         
  23. ALTER TABLE [dnt_photos] ADD [width] [int] DEFAULT(0) NOT NULL  ;
  24. IF NOT EXISTS(
  25. SELECT  *
  26. FROM    syscolumns
  27. WHERE   id = ( SELECT   id
  28.                FROM     sysobjects
  29.                WHERE    name = 'dnt_photos'
  30.              )
  31.         AND name = 'height')
  32.         
  33. ALTER TABLE [dnt_photos] ADD [height] [int] DEFAULT(0) NOT NULL  ;