当前位置: 代码迷 >> Sql Server >> 为什么这段sql语句不能连续执行解决思路
  详细解决方案

为什么这段sql语句不能连续执行解决思路

热度:90   发布时间:2016-04-27 17:59:48.0
为什么这段sql语句不能连续执行
--创建Table_Dept表
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING OFF
GO
if exists (select * from sys.tables where name='#Table_Dept')
drop table #Table_Dept
go
create table #Table_Dept
(
  [Dept_Id] [int] identity(1,1) not null,
  [Dept_Name] [nvarchar](200) not null
)

------解决方案--------------------
SQL code
if object_id('Tempdb..#Table_Dept') is not nulldrop table #Table_Deptgocreate table #Table_Dept(  [Dept_Id] [int] identity(1,1) not null,  [Dept_Name] [nvarchar](200) not null)
------解决方案--------------------
SQL code
--创建Table_Dept表SET QUOTED_IDENTIFIER ONGOSET ANSI_PADDING OFFGOif object_id('#Table_Dept') is not nulldrop table #Table_Deptgocreate table #Table_Deptgo(  [Dept_Id] [int] identity(1,1) not null,  [Dept_Name] [nvarchar](200) not null)
  相关解决方案