SQL Server - 列顺序重要吗?

2021-12-20 00:00:00 performance optimization sql-server

在性能和优化方面:

  • 在 SQL Server 中构建表时,列的顺序是否重要?
  • 如果我的主键是第一列,这有关系吗?
  • 在构建多字段索引时,列是否相邻有关系吗?
  • 使用 ALTER TABLE 语法,是否可以指定我想在什么位置添加列?
    • 如果没有,我如何将一列移动到不同的位置?

    推荐答案

    在 SQL Server 2005 中,可空可变长度列的放置会影响空间 - 将可空可变长度列放置在定义的末尾可以减少空间消耗.

    In SQL Server 2005, placement of nullable variable length columns has a space impact - placing nullable variable size columns at the end of the definition can result in less space consumption.

    SQL Server 2008 添加了SPARSE"列功能,消除了这种差异.

    SQL Server 2008 adds the "SPARSE" column feature which negates this difference.

    参见 这里.

相关文章