我试图找出Byte
是否是SQL Server中的有效数据类型,以及它是否具有等效数据类型。我不确定是否有相同的类型
答案 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