注册会员,创建你的web开发资料库,--创建临时表 create table #t ( myid int not null, mycd varchar(20) null ) --删除临时表
declare @tmptable nvarchar(300) if exists(select name from tempdb..sysobjects where name like '#t'+'%' and type = 'u') begin set @tmptable='' set @tmptable=(select name from tempdb..sysobjects where name like '#t'+'%' and type = 'u') exec('drop table '[email protected]) end go --说明 /* 临时表的命名规则: #t 表示本地变量 ##t 表示全局变量 */