摘要: USE AdventureWorks; GO CREATE TABLE #temptable (col1 int); GO INSERT INTO #temptable VALUES (10); GO SELECT * FROM #temptable; GO IF OBJECT_ID(N'tempdb..#temptable', N'U') IS NOT NULL DROP TABLE #tem... 阅读全文
posted @ 2007-09-11 13:39 李占卫 阅读(248) 评论(0) 推荐(0) 编辑