摘要: 临时表,是临时使用的一张表。有两种临时表: 本地临时表:只能在当前查询页面使用,新开查询不能使用它。 在表名前加#即可得本地临时表。eg: select TOP 10 * into #temp from table1; select * from #temp; 如果新开一个页面重新执行该句 sele 阅读全文
posted @ 2021-04-29 20:12 smallzhen 阅读(2178) 评论(0) 推荐(0) 编辑