F
Faraz A. Qureshi
Upon creating a simple query requiring a table with following fileds:
Field1, Field2, Field3
To be grouped as follows:
SELECT Table1.Field1, Table1.Field2, Sum(Table1.Field3) AS SumOfField3
FROM Table1
GROUP BY Table1.Field1, Table1.Field2;
I have found that still duplicates are occurring and Field1 & Field2,
although grouped, appear more than once.
What might be the reason? and the way out???
Field1, Field2, Field3
To be grouped as follows:
SELECT Table1.Field1, Table1.Field2, Sum(Table1.Field3) AS SumOfField3
FROM Table1
GROUP BY Table1.Field1, Table1.Field2;
I have found that still duplicates are occurring and Field1 & Field2,
although grouped, appear more than once.
What might be the reason? and the way out???