Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Upgrading, GROUP BY question
Message
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Miscellaneous
Thread ID:
01313609
Message ID:
01313622
Views:
10
>I'm upgrading a VFP7 app to VFP9. I understand that all non-agregate fields should be included in the GROUP BY clause. Am I mistaken to assume that the primary group should be listed first? If the other fields are included only to make the select work, does it matter whatorder they are listed in?
>
>Is there a downside to listing many fields in the GROUP BY clause?
>
>Is there a better (or proper) way to handle this?
>
>Thanks in advance for any help clarifying.

Yes, primary group should be listed first. For the rest you may use some aggregate function such as min (max) if you don't want to list these fields in the GROUP BY, e.g.
select myGroupField, max(myOtherField) as myOtherField, etc. .... group by 1
If it's not broken, fix it until it is.


My Blog
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform