show/hide this revision's text 4 changed code format to remove horizontal scroll bar

I am attempting to select a distinct list where duplicates are created over several fields. For example,

SELECT tablename.field1Date, 
       tablename.field2Number, 
       tablename.field3Text 
FROM tablename;

Would select duplicating records over the date, number and text fields respectively.

Now, when I select distinct records to provide what I am looking for, the performance seems to decrease dramatically.

SELECT DISTINCT tablename.field1Date,
                tablename.field2Number, 
                tablename.field3Text 
FROM tablename;

Is there any known reasons for this? I must admit I am using MS Access 2003 which may be the issue.

show/hide this revision's text 3 edited tags
show/hide this revision's text 2 edited title

In SQL, How does using DISTINCT effect affect performance?

show/hide this revision's text 1