摘要:
临时表的创建有两种,考虑有时候会对临时表做一些数据处理,create会方便很多 SELECT * INTO #temp1 FROM temp1 IF object_id(N'tempdb..#temp1',N'U') is not null BEGIN DROP TABLE #temp1 END C 阅读全文
posted @ 2022-10-31 10:47
ghelement
阅读(24)
评论(0)
推荐(0)
2022年10月31日