SQL Server - 列顺序重要吗? [英] SQL Server - Does column order matter?

查看:36
本文介绍了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.

    参见 这里.

    这篇关于SQL Server - 列顺序重要吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆