Answers for "create temp table without defining columns"

SQL
0

Best way to create a temp table with same columns and type as a permanent table

select top 0 *
into #mytemptable
from myrealtable
Posted by: Guest on December-21-2020

Code answers related to "create temp table without defining columns"

Code answers related to "SQL"

Browse Popular Code Answers by Language