identity-insert FROM的语法没有要插入的列?

时间:2016-12-12 12:09:21

标签: sql sql-server sql-server-2008 tsql

我定义了以下表格

CREATE TABLE dbo.T_Comments_Paths
(
     path_id bigint IDENTITY(1,1) NOT NULL
    ,CONSTRAINT [PK_T_Comments_Paths] PRIMARY KEY(path_id)
);


CREATE TABLE dbo.T_Comments 
(
     COM_Id int IDENTITY(1,1) NOT NULL 
    ,COM_Text NATIONAL CHARACTER VARYING(255) NULL 
    ,CONSTRAINT [PK_T_Comments] PRIMARY KEY(COM_Id)
);

如果我需要获得评论的路径ID,对于单值,我可以这样得到:

DECLARE @outputTable TABLE (path_id bigint); 
INSERT INTO T_Comments_Paths OUTPUT INSERTED.path_id INTO @outputTable DEFAULT VALUES; 
SET @__pathuid = (SELECT TOP 1 id FROM @outputTable); 

但是,我找不到从另一个表获取插入的插入ID(多个)的语法。

e.g。我想这样做:

DECLARE @outputTable TABLE (path_id bigint, com_id bigint); 
INSERT INTO T_Comments_Paths
OUTPUT INSERTED.path_id, com_id INTO @outputTable DEFAULT VALUES  
FROM T_Comments 

这会产生

  

“FROM-keyword附近的语法不正确”

我该怎么做(没有光标)?
注意:我需要与MySQL兼容,所以我不能使用newid(),因为MySQL中没有uuid类型,我也不想使用varchar或varbinary ..

1 个答案:

答案 0 :(得分:1)

如果我理解正确,你的问题归结为: 将n个新行添加到标识列,然后将这些新添加的值更新为具有n行(@outputTable)的表中的空列,而不必担心匹配。

设置测试

CREATE TABLE #T_Comments_Paths (
    path_id BIGINT IDENTITY(1,1) NOT NULL
    , CONSTRAINT [PK1] PRIMARY KEY (path_id)
);

CREATE TABLE #T_Comments (
    com_id BIGINT IDENTITY(1,1) NOT NULL
    , com_text NVARCHAR(20) NULL
    , CONSTRAINT [PK2] PRIMARY KEY (com_id)
);

INSERT INTO #T_comments (com_text)
VALUES
('com1')
, ('com2');

**解决方案1 ​​*

如果您愿意在@outputTable(又名rowNo)中添加一个额外的列,您可以得到一个更短的解决方案:

--Add a few values to make #T_Comment_Paths not empty, for testing purpose, making things not matching
INSERT INTO #T_Comments_Paths DEFAULT VALUES;
INSERT INTO #T_Comments_Paths DEFAULT VALUES;
INSERT INTO #T_Comments_Paths DEFAULT VALUES;

DECLARE @currentID BIGINT;
SELECT @currentID = IDENT_CURRENT('#T_Comments_Paths');
-- @currentID should be 3

DECLARE @outputTable TABLE (path_id bigint, com_id bigint, rowNo bigInt); 

INSERT INTO @outputTable (com_id, rowNo)
SELECT
    com_id
    , ROW_NUMBER() OVER (ORDER BY (SELECT NULL))
FROM
    #T_comments;

MERGE #T_Comments_Paths tgt
USING @outputTable src
ON tgt.path_id = src.path_id
WHEN NOT MATCHED THEN INSERT DEFAULT VALUES;

MERGE @outputTable tgt
USING (
    SELECT
        path_id
        , ROW_NUMBER() OVER (ORDER BY (SELECT NULL)) AS RowNo
    FROM
        #T_Comments_Paths
    WHERE
        path_id > @currentID
) src
ON tgt.RowNo = src.RowNo
WHEN MATCHED THEN UPDATE SET
    tgt.path_id = src.PATH_ID;

SELECT *
FROM
    @outputTable;

SELECT *
FROM
    #T_Comments_Paths

DROP TABLE #T_Comments;
DROP TABLE #T_Comments_Paths;

**解决方案2 **

如果你坚持在@outputTable中只有2列,那么这是一个解决方案(更长)

--Add a few values to make #T_Comment_Paths not empty, for testing purpose
INSERT INTO #T_Comments_Paths DEFAULT VALUES;
INSERT INTO #T_Comments_Paths DEFAULT VALUES;
INSERT INTO #T_Comments_Paths DEFAULT VALUES;
DECLARE @currentID BIGINT;
SELECT @currentID = IDENT_CURRENT('#T_Comments_Paths');
-- @currentID should be 3

DECLARE @outputTable TABLE (path_id bigint, com_id bigint); 
DECLARE @outputMiddleTable TABLE (rowNo bigint, com_id bigint);


INSERT INTO @outputTable (com_id)
SELECT
    com_id
FROM
    #T_comments;

WITH cte AS (
    SELECT
        com_id
        , ROW_NUMBER() OVER (ORDER BY (SELECT NULL)) AS RowNo
    FROM
        @outputTable
)
INSERT INTO @outputMiddleTable (rowNo,com_id)
SELECT RowNo, com_id
FROM cte;

MERGE #T_Comments_Paths tgt
USING @outputTable src
ON tgt.path_id = src.path_id
WHEN NOT MATCHED THEN INSERT DEFAULT VALUES;

WITH cte1 AS (
SELECT
    path_id
    , ROW_NUMBER() OVER (ORDER BY (SELECT NULL)) AS RowNo
FROM
    #T_Comments_Paths
WHERE
    path_id > @currentID
), cte2 AS (
SELECT
    cte1.path_id
    , t1.com_id
FROM
    @outputMiddleTable t1
    JOIN cte1 ON t1.rowNo = cte1.RowNo
)
UPDATE ot
SET path_id = cte2.path_id
FROM @outputTable ot
    JOIN cte2 ON ot.com_id = cte2.com_id

SELECT *
FROM
    @outputTable;


DROP TABLE #T_Comments;
DROP TABLE #T_Comments_Paths;