Get SQL Computed Column Inserted Value

夙愿已清 提交于 2019-12-10 10:44:57

问题


My Table Structure as follow,

CREATE TABLE tbl_Info
(
    [SSEID]         BIGINT              NOT NULL    IDENTITY(1,1),
    [ShortenKey]    AS ConvertToBase([SSEID]),
    [Title]         VARCHAR(500)        NULL,       
)

ConvertToBase Function as Follow,

CREATE FUNCTION ConvertToBase(@Number BIGINT)
RETURNS VARCHAR(15)
AS 
BEGIN
      // implementation
END

I need to get the generated [ShortenKey] value after INSERT query in sp. how to do this ?


回答1:


Use the OUTPUT clause?

INSERT tbl_Info (Title)
OUTPUT INSERTED.ShortenKey
VALUES ('new title')

Note: may not work with computed columns says MSDN, if I read it correctly.




回答2:


Use SCOPE_IDENTITY to get the new identity value. Then query the newly inserted row.

SELECT ShortenKey
FROM dbo.tbl_Info
WHERE SSEID = SCOPE_IDENTITY()



回答3:


SELECT ShortenKey
FROM dbo.tbl_Info
WHERE SSEID = SCOPE_IDENTITY()


来源:https://stackoverflow.com/questions/6354894/get-sql-computed-column-inserted-value

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!