Hi
I am new to this SQL and I using access to build the below statement.
Below is a working SQl statement but I need to output DISTINCT records.
How do I compose this syntax inorder to display DISTINCT record using this {SR.No#] field
-----------------------------------------------------------------------------------------
SELECT Sheet1.Date, Sheet1.[Club Name], Sheet1.[Problem / Symptom Description], Sheet1.[SR No#] FROM Sheet1
GROUP BY Sheet1.Date, Sheet1.[Club Name], Sheet1.[Problem / Symptom Description], Sheet1.[SR No#], Sheet1.[SR No#], Sheet1.Date
HAVING (((Sheet1.Date)>#6/1/2010# And (Sheet1.Date)<#6/30/2010#))
ORDER BY Sheet1.Date;
-----------------------------------------------------------------------------------------