SQL Server中各个类型占用多少字节?如int、smallint、bigint、datetime、uniqueidentifier等
int:4 bytes
smallint:2 bytes
bigint:8 bytes
datetime:8 bytes
uniqueidentifier:16 bytes
此類問題可以從MSDN上得到比較詳細的答案。