文章分类 -  Sql

摘要:创建临时表 if object_id(N'tempdb..#temp',N'U') is not null --判断临时表temp是否存在 drop table #temp ----若临时表存在,则先删除 方法一: create table #临时表名(字段1 约束条件,字段2 约束条件,...... 阅读全文
posted @ 2015-12-24 15:51 谁的青春不迷茫 阅读(125) 评论(0) 推荐(0)