表table1,主键uid,现在希望table1按siteType + name 进行物理排序,应该怎么做?

解决方案 »

  1.   

    create CLUSTERED  index indexname on table1(siteType,name)
      

  2.   

    但uid是主键系统,已在上面创建了聚集索引哟
      

  3.   

    设计表-》管理索引/键-》选定该索引后不要勾选  创建为clu那个checkbox->关闭后保存呀
    然后再create CLUSTERED  index indexname on table1(siteType,name)
      

  4.   

    没测试过,LZ自己试下
    可参考http://www.readbook8.com/dev/5703/4134722.htm