Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Help on SQL to Retrive Data
Message
From
06/02/2013 05:18:58
 
 
To
06/02/2013 02:15:00
General information
Forum:
Visual FoxPro
Category:
Object Oriented Programming
Environment versions
Visual FoxPro:
VFP 9 SP2
OS:
Windows XP
Network:
Windows XP
Database:
Visual FoxPro
Application:
Desktop
Miscellaneous
Thread ID:
01565237
Message ID:
01565251
Views:
38
Thank you very Much Sir,

Regards
Harsh

>>I have a table which contains two columns namely
>>
>>attribute(c)
>>Accountno (n)
>>
>>The data is as follows
>>
>>Attribute				Accountno
>>
>>GOOD					12345256
>>GOOD					12345256
>>GOOD					12345256
>>GOOD					67569856
>>FAIR					65957514
>>FAIR					65957514
>>AVG					99628522
>>AVG					65957514
>>AVG					12345256
>>
>>
>>In the above table you could see that the account number 12345256 has repeated attribute for GOOD for 3 times. Similarly account Number has FAIR for two times.
>>
>>For my program, I need to have an attribute for only one time.
>>So I need an SQL that could trace the repeated values of an attribute if the account number is same.
>
>
>SELECT ;
>  Accountno ;
>  , Attribute ;
>  , COUNT( * ) AS DupCount ;
>  FROM MyTable ;
>  INTO CURSOR Duplicates ;
>  GROUP BY Accountno, Attribute ;
>  HAVING DupCount > 1
>
Research GROUP BY and HAVING clauses in standard SQL to see how this works.
Harsh
Previous
Reply
Map
View

Click here to load this message in the networking platform