I have a table with 51 fields, and I could have duplicate records where the values of all 50 fields might be the same. I need to exclude those records from my select query, but cannot use two copies of the same table joined on each field (Query too complex error) and distinctrow does not work (single table) and a primary index can only be 10 fields. I tried to add a dummy table to the query and join the two on a field, and then use a "distinctrow" selection from the non-dummy table, but it only works on the one-side of the join. How do I do this, as I need to have distinct records for the statistical analysis I do on the data (STDEV, AVE etc)?
Regards
Pieter
Regards
Pieter