Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: Insert Row Count

    you could use this example :

    select * into #temptable from [your_table]

    select @@ROWCOUNT row_count,* into #targettemp

    from #temptable

    select * from #targettemp

     

     

Viewing post 1 (of 1 total)