Answered Temporary Tables

  • Wednesday, February 13, 2013 6:58 AM
     
     

     What are the different types to create temporary tables in sql server?

All Replies

  • Wednesday, February 13, 2013 7:16 AM
     
     Answered
    To create a temp table you can use the explicit CREATE TABLE #myTempTabe (col1 int, ...) or the implicit method with SELECT Col1 INTO #myTempTable

    Olaf Helper

    Blog Xing

    • Marked As Answer by DBA DEVELOPER Wednesday, February 13, 2013 8:31 AM
    •