Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Check for duplicates
Message
 
To
07/03/2006 14:39:08
Jerry Tovar
Dana Corporation Dana It
Maumee, Ohio, United States
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Environment versions
Visual FoxPro:
VFP 9 SP1
Miscellaneous
Thread ID:
01102167
Message ID:
01102169
Views:
23
>Using VFP9, how can I check for the occurrence of a part existing more than once in an order?
>
>The following dataset contains part# 'part2' twice.
>
>order# part#
>1 part1
>1 part2
>1 part3
>1 part2
>2 part1
>2 part2
>etc....
>
>I would like to see a query result that states 'part2' is found twice for order# 1. How can I do this?
>
>Thanks,
>
>Jerry
SELECT Order, Part, COUNT(*) AS Cnt;
      FROM MyTable;
GROUP BY Order, Part;
HAVING Cnt > 1
Against Stupidity the Gods themselves Contend in Vain - Johann Christoph Friedrich von Schiller
The only thing normal about database guys is their tables.
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform