Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Group by clause in vfp8
Message
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
00774269
Message ID:
00774302
Views:
30
>>>Hi to all:
>>>I don't understand how to write the group by clause in vfp8, naming all the fields? why? It's a big job!
>>>Anybody can give me an explanation?
>>>Thanks
>>
>>Pedro,
>>
>>In 8.0, you can't do something like the following
SELECT sku, stockcolor, SUM(quantity);
>>  FROM Products;
>>  GROUP BY sku;
>>  INTO CURSOR resultset
because the query involves an aggregate function (SUM) and the stockcolor field is not in the GROUP BY clause. In previous versions you could. The workaround is to issue SET ENGINEBEHAVIOR 70 immediately prior to issuing the query then SET ENGINEBEHAVIOR 80 afterwards.
>
>George,
>The workaround is to add the stockcolor field to the Group By clause, IMO. ;-)

< bg >Not if you just want the totals for each sku.:-)
George

Ubi caritas et amor, deus ibi est
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform