首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

MSSQL剔除表及快速创建表(临时表)

2012-07-22 
MSSQL删除表及快速创建表(临时表)一、临时表if object_id(N#otc_otherdeliverline, Nu) is not null dr

MSSQL删除表及快速创建表(临时表)
一、临时表

if object_id(N'#otc_otherdeliverline', N'u') is not null drop table #otc_otherdeliverlineSelect * into #otc_otherdeliverline from v_utis_CRMOtherDeliverLine

热点排行