Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
SQL Select
Message
From
08/05/1998 09:13:17
Ranjit Londhe
Anglo Eastern Ship Mgmt Ltd.
Mumbai, India
 
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Title:
Miscellaneous
Thread ID:
00098004
Message ID:
00098024
Views:
57
Matt,
Try this :

SELECT cfieldname, count(*) AS dup_num ;
FROM ctable ;
GROUP BY cfieldname ;
HAVING count(*) > 1 ;
INTO CURSOR ctempfile

The resultatnt set should show one row for each unique 'cfieldname' value and the corresponding count.

HTH,
Ranjit.

>If I have a table that has 20 records in it, and the first 10 store the number 1 and the second 10 store the number 2 in it. Is there any way to use the SQL Select statement to count the number of occurences of 10 and 20 in one statemnet? Or do I have to use a calculate cnt() statement twice, once for 10 and once for 20.
>
>Thanks,
>Matt
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform