添加链接
link之家
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接
相关文章推荐
销魂的水桶  ·  subprocess时报sudo: ...·  11 月前    · 
温暖的键盘  ·  python - Intersection ...·  1 年前    · 

1.字段是否存在

if((select count(*) from syscolumns where name = '字段名' and id=(select id from sysobjects where name='表名'))=0)
begin

2.表是否存在

if exists (select * from sysobjects where id = OBJECT_ID('表名') and OBJECTPROPERTY(id, 'IsUserTable') = 1)
DROP TABLE 表名