如何在存储过程中创建与当前表完全相同的临时表?
最佳答案
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
关于sql - 在SQL Server 2005/2008中创建一个类似于当前表的临时表,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1689623/