Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Deleting Duplicate Records In Table
Message
De
12/04/2013 10:06:09
 
 
À
Tous
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Titre:
Deleting Duplicate Records In Table
Versions des environnements
Visual FoxPro:
VFP 9 SP2
OS:
Windows XP
Network:
Windows XP
Database:
Visual FoxPro
Application:
Desktop
Divers
Thread ID:
01570796
Message ID:
01570796
Vues:
69
Using the following code I could Get the number of counts for Duplicate records. But How do I delete the Duplicate entries, i.e I just want to keep the one single entry for my account Number, Preferebly the last one.
SELECT Accountno As Account_No,COUNT( * ) AS DupCount;
  FROM New_master ;
  INTO CURSOR Duplicates ;
  GROUP BY Accountno ;
  HAVING DupCount > 1 
I tried Select * from New_master UNION Select * from New_master . But It didn't worked.
Harsh
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform