SQL Server选择合并后加入列

时间:2012-06-29 20:47:31

标签: sql sql-server-2008 select join

使用填充的表类型作为TSQL-Merge的源。我想在合并后执行一个select语句, 检索表类型的所有列/行,但不是'-1'值,我想要新的 插入ID。我不确定我能否以完全基于整套的方式做到这一点,是吗?

这是用于向DB发送一堆插入的UI,并且需要返回相同的对象,但是填充了每个ID列值。 SQL JOIN操作没有“公共列”。

CREATE TYPE instype AS TABLE(
    instypeid [smallint] NOT NULL,
    instext [varchar](64) NOT NULL
)
Go
create table #desttable ( instypeid smallint identity(1,1) primary key , instext varchar(64) )
Go
declare @newids table ( idvalue smallint )
declare @thing1 instype
insert into @thing1 values ( -1 , 'zero' )
insert into @thing1 values ( -1 , 'one' )
    Merge #desttable desttbl
            Using @thing1  srctbl
            On desttbl.instypeid = srctbl.instypeid
            When Not Matched Then
                Insert ( instext )
                Values ( instext )
            Output inserted.instypeid Into @newids
        ;

/*
        Wanted shape of the result set
        instypeid   instext
        0           zero
        1           one

*/

感谢。

1 个答案:

答案 0 :(得分:3)

但您可以通过稍微修改当前代码来获得结果集:

if object_id('tempdb.dbo.#desttable') is not null
    drop table #desttable 

create table #desttable ( instypeid smallint identity(0,1) primary key
, instext varchar(64) )
Go
declare @inserted table ( idvalue smallint, instext varchar(64) )
declare @thing1 instype

insert into @thing1 values ( -1 , 'zero' ), ( -1 , 'one' )

Merge #desttable desttbl
        Using @thing1  srctbl
        On desttbl.instypeid = srctbl.instypeid
        When Not Matched Then
            Insert ( instext )
            Values ( instext )
        Output inserted.instypeid, inserted.instext Into @inserted
    ;

SELECT  *
FROM    @inserted