摘要: USE AdventureWorks2008R2;GOCREATE TABLE #temptable (col1 int);GOINSERT INTO #temptableVALUES (10);GOSELECT * FROM #temptable;GOIF OBJECT_ID(N'tempdb..#temptable', N'U') IS NOT NULL DROP TABLE #temptable;GO--Test the drop.SELECT * FROM #temptable; 阅读全文
posted @ 2011-10-31 10:59 野三坡 阅读(194) 评论(0) 推荐(0) 编辑