Hello,
This very simple Query works fine with FoxPro V7:
SELECT Calls.key, Calls.arch_key, Calls.datetime;
FROM main!calls;
GROUP BY Calls.datetime;
ORDER BY Calls.datetime
With V8 (SP1 installed or not) it gives :
'SQL:GROUP BY clause is missing or invalid'
I tried several simple Queries and each time this message appears when a GROUP clause is used.
If I remove the GROUP clause, it works.
Thanks for your help
This very simple Query works fine with FoxPro V7:
SELECT Calls.key, Calls.arch_key, Calls.datetime;
FROM main!calls;
GROUP BY Calls.datetime;
ORDER BY Calls.datetime
With V8 (SP1 installed or not) it gives :
'SQL:GROUP BY clause is missing or invalid'
I tried several simple Queries and each time this message appears when a GROUP clause is used.
If I remove the GROUP clause, it works.
Thanks for your help