Using VFP8 without changing SET ENGINEBEHAVIOR, I've found that you can't run a SQL statement where one of the selected fields is a memo type and you use the GROUP BY keywords to get a cumulative field.
I had the statement
where explanation is a memo field. This triggers the "GROUP BY clause is missing" error. Changing the statement to GROUP BY 1,2,3 triggers the same error.
Is there a way around this?
Thanks,
Stewart
I had the statement
Code:
SELECT pkey,descr,explanation,cnt(donation.dondate) FROM acqwhycode JOIN donation ON whyfk=pkey WHERE groupfk=[u] GROUP BY 1,2 ORDER BY 4
Is there a way around this?
Thanks,
Stewart