Group by truncating field

  • Thread starter Thread starter Question Boy
  • Start date Start date
Q

Question Boy

I have a simple query

SELECT [Tbl Contacts].First, [Tbl Contacts].Last, [Tbl Contacts].Notes
FROM [Tbl Contacts]
GROUP BY [Tbl Contacts].First, [Tbl Contacts].Last, [Tbl Contacts].Notes;

However, it is truncating the content of my memo field Notes. How can I
return the complete field value?

Thanks,

QB
 
Back
Top