Hi All,
Is there a difference in preformance between the two;
TblNme has 36 fields across a record
a query that selects all fields and the report only uses 75% of the
fields, ie; Select TblNme.* where OffCde='123'
or
a query that selects the 27 fields used in the report
ie; Select TblNme.FieldNme , TblNme.FieldNme , etc.... where
OffCde='123'
In the first senerio does the query first bring down all the
data(including all the fields) and then select out the fields form the
criteria?
thanks
bobh.
Is there a difference in preformance between the two;
TblNme has 36 fields across a record
a query that selects all fields and the report only uses 75% of the
fields, ie; Select TblNme.* where OffCde='123'
or
a query that selects the 27 fields used in the report
ie; Select TblNme.FieldNme , TblNme.FieldNme , etc.... where
OffCde='123'
In the first senerio does the query first bring down all the
data(including all the fields) and then select out the fields form the
criteria?
thanks
bobh.
Comment