一尘不染

在SQL Server 2005/2008中创建一个类似于当前表的临时表

sql

如何在存储过程中创建与当前表完全相同的临时表?


阅读 124

收藏
2021-05-23

共1个答案

一尘不染

select * into #temp_table from current_table_in_stored_procedure

#temp_table - locally temp
##temp_table - globally temp

select top 0 * into #temp_table from current_table_in_stored_procedure to have empty table
2021-05-23