Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
VFP8 GROUP BY Restriction
Message
From
28/05/2003 09:12:46
 
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Miscellaneous
Thread ID:
00793077
Message ID:
00793443
Views:
38
Hi Sergey,
At first, it looked like DISTINCT was working but on the second attempt to use it, it failed. I don't know if the problem is in my understanding or if I have uncovered an anomoly. Here is code which demonstrates the problem:

* this query fails--it gets distinct rows by empPK and location
SELECT DISTINCT iemppk,sortname,clocation;
FROM cureport1;
ORDER BY sortname;
INTO CURSOR Cu1


* this query fails--it gets distinct rows by empPK and location
SELECT DISTINCT iemppk,sortname,iDivPK;
FROM cureport1;
ORDER BY sortname;
INTO CURSOR Cu2

* this query succeeds--it gets distinct rows by empPK only
SELECT DISTINCT iemppk,sortname;
FROM cureport1;
ORDER BY sortname;
INTO CURSOR Cu3

Any idea what causes query 1 and 2 to fail?
If you want, I can email you the input data. It is small.
Thanks, Chaim
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform