摘要:
创建表之前判断表是否存在,如果存在则删除已有表在sqlserver中,创建表之前判断表是否存在,如果存在则删除已有表Sql代码 www.2cto.com ----SQL-Server if exists (select 1 from sysobjects where id = object_id('EMP') and type = 'U') drop table S_Evaluate go --CREATE Table: EMP create table EMP( Id numeric identity, -- 评估ID ... 阅读全文