判断临时表是否存在,存在则删除!

如果按照实体表那样话,是不行的,是删除不了的,临时表存在于tempdb数据库中,所以必须指定数据库。

tempdb数据库的作用

  • 显示创建的临时用户对象,例如全局或局部临时表、临时存储过程、表变量或游标。

下面是删除临时表后重建临时表的脚本



-- =============================================
-- Author: <奔跑的金鱼>

-- Create date: <2015/01/04>
-- Description: <判断临时表是否存在>
-- =============================================
IF OBJECT_ID(N'tempdb..[#test]') is not null
drop table #test
create table #test(id int)


这个虽然简单,但是难者不会,会者不难。。


作者:奔跑的金鱼