E
Ed Robichaud
In general, you would want to index all controls/fields that you would later
use to sort/filter in queries and reports. A "name" index (Lname,Fname,MI)
is a common compound index example. Another might be invoiceDate,
productID, etc.
However, you tables should almost always have a single unique ID field as a
primary key and that would be used in building relationships to other
tables.
-Ed
use to sort/filter in queries and reports. A "name" index (Lname,Fname,MI)
is a common compound index example. Another might be invoiceDate,
productID, etc.
However, you tables should almost always have a single unique ID field as a
primary key and that would be used in building relationships to other
tables.
-Ed