是否存在字节数据类型或SQL Server中是否存在等效类型?

时间:2017-06-26 21:27:08

标签: sql-server database types

我试图找出Byte是否是SQL Server中的有效数据类型,以及它是否具有等效数据类型。我不确定是否有相同的类型

2 个答案:

答案 0 :(得分:0)

tinyint = 1 byte = 8 bits
smallint = 2 bytes = 16 bits
int = 4 bytes = 32 bits
bigint = 8 bytes = 64 bits

此外:

char(1) = 1 byte
nchar(1) = 2 bytes

答案 1 :(得分:0)

如果你的意思是一个八位整数,那么TINYINT是我能想到的最接近的。请参阅:the microsoft documentation