虽然不懂Visual Foxpro6.0但数据库知识大多一样。
主索引一般指主键索引这种索引是表记录在磁盘上是有序排列的,查找是最快的,不过一张表只能有一个这样的索引。
普通索引是指非物理上排序的索引,是在数据库中增加数据结构存储相应的位置。
唯一索引应该是unique索引,被引用的字段必须在表内是唯一的,道理同unique在数据库中的作用,你可以看一下数据库方面基础的书

解决方案 »

  1.   

    A “cluster” is a group of tables that share the same data blocks (on disk) because they share common columns and are often used together
    Related rows of different tables (but with identical values in common columns) are stored togetherFor example:
    consider the schema Students(sid,deptid), Departments(deptid,deptName)cluster the two table means the deptid in both Students and Departments are PHYSICALLY stored together in database in which Disk I/O is reduced and access time improves for joins of clustered tables. However, Clusters can reduce the performance of INSERT statements.A index created on the cluster is called cluster index.