Guest User

Untitled

a guest
Aug 19th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. TSQL Declare a variable in tsql without defining columns explicitly
  2. declare @tab as select * from myTable
  3.  
  4. select *
  5. into #myTempTable
  6. from myTable
Add Comment
Please, Sign In to add comment