Why does select SCOPE_IDENTITY() return a decimal instead of an integer?

后端 未结 4 1261
野性不改
野性不改 2020-11-27 05:10

So I have a table with an identity column as the primary key, so it is an integer. So, why does SCOPE_IDENTITY() always return a decimal value instead of an int

相关标签:
4条回答
  • 2020-11-27 05:56

    In SQL Server, the IDENTITY property can be assigned to tinyint, smallint, int, bigint, decimal(p, 0), or numeric(p, 0) columns. Therefore the SCOPE_IDENTITY function has to return a data type that can encompass all of the above.

    As previous answers have said, just cast it to int on the server before returning it, then ADO.NET will detect its type as you expect.

    0 讨论(0)
  • 2020-11-27 05:58

    Can't you just cast it before returning it from your query or stored proc (SPs alway return int anyway, but maybe you are using an output parameter)?

    Like SELECT CAST(SCOPE_IDENTITY() AS INT) AS LAST_IDENTITY

    And why it does this? Probably to be more flexible and handle larger numbers.

    0 讨论(0)
  • 2020-11-27 06:15

    try using this and you'll get an integer back:

    ExecuteScalar('insert...; select CONVERT(int,scope_identity())');
    
    0 讨论(0)
  • 2020-11-27 06:16

    Scope identity return value is decimal(38,0)

    CAST it, use the OUTPUT clause, or assign to an output parameter rather than SELECT SCOPE_IDENTITY() to the client

    0 讨论(0)
提交回复
热议问题