Quantcast
Channel: Rss Feed - SSMSBoost Add-in discussion board - Forum
Viewing all articles
Browse latest Browse all 825

'Jump between COLUMN/VALUE'

$
0
0
I am wondering if it is possible to use 'Jump between COLUMN/VALUE' for insert...select statements, not just insert...values.

For example:
Code:


declare @temp table (Id int, Name varchar(30))

-- 'Jump between COLUMN/VALUE' works.
insert into @temp (Id, Name)
values (1, 'Jeff')

-- 'Jump between COLUMN/VALUE' doesn't work (No parent BEGIN/END found)
insert into @temp (Id, Name)
select 1, 'Jeff'

-- 'Jump between COLUMN/VALUE' doesn't work (No parent BEGIN/END found)
insert into @temp (Id, Name)
select Id, Name
from SomeOtherTable



Go to last post

Viewing all articles
Browse latest Browse all 825

Trending Articles