简体   繁体   English

C#long类型的等效SQL Server类型是什么?

[英]What is the equivalent SQL Server type for the C# long type?

我想知道C#中等效的SQL Server类型是long

映射表很清楚BIGINT相当于Int64 (在C#中很long )。

The equivalent type is bigint which is a 64-bit numeric type. 等效类型是bigint ,它是64位数字类型。

It fits numbers in the range from -2^63 to 2^63-1 which is the same as the C# long type . 它适合在-2^632^63-1范围内的数字,这与C# long类型相同

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM