sql返回行id

1、sql语句中 
insert into tableName() output inserted.id values() 
2 、存储过程中 
ALTER PROCEDURE dbo.getBuyMedicID 

    @id int output, 
    @AllsumMoney money 
    ) 
AS 
begin 
    INSERT INTO 
    t_buyMedic(sumMoney,buyDate) 
    VALUES(@AllsumMoney,getdate()) 
    select @id=@@identity 
    end 
    RETURN

sql返回行id,布布扣,bubuko.com

sql返回行id

上一篇:既然无法击败AI,何不投身其中:Elon Musk重返脑机接口业务


下一篇:安装SQL Server 2008 R2 的时候报错了 verify that you have sufficient access to that key,or conta............