Tuesday, 27 September 2016

How declare table variable in sql


Declare a table variable
DECLARE @t table
( 
    id        INT Identity, 
    column1   VARCHAR(200)
)

insert value to the table 
insert into @t(a)
     select 'aa'
     union
     select 'bb'
     union
     select 'cc'
     union
     select 'dd'

Run select query
select * from @t
 
 
1       aa
2       bb
3       cc
4       dd 

No comments:

Post a Comment

বাঙালির বেড়ানো সেরা চারটি ঠিকানা

  বাঙালি মানে ঘোড়া পাগল | দু একদিন ছুটি পেলো মানে বাঙালি চলল ঘুরতে | সে সমুদ্রই হোক , পাহাড়ি হোক বা নদী হোক। বাঙালির ...