谢谢,我的Q号:842898225,十分感谢。

解决方案 »

  1.   

    或者直接看看老大的书 深入浅出SQL SERVER 2000 数据库开发
      

  2.   

    http://blog.csdn.net/allen_cn/archive/2007/01/12/1481000.aspx
      

  3.   

    http://database.ctocio.com.cn/481/9114981.shtml
      

  4.   

    create [unique][clustered | nonclustered]
    index index_name
    on table_name (column_name,...)
    [with fillfactor=x]index_name 索引名字
    table_name 表名
    column_name 列名
    fillfactor  填充因子
      

  5.   


    在你要修改的数据表上点击右键->All Task->Manage Index
      

  6.   

    在建立索引的时候,是不是SELECT的所有对象都要建立索引?
      

  7.   

    如果:select a,b,c,d from tbl,我只对a建索引,和对a,b,c,d都建索引的判别大吗?