Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
How to? Get every possible combination.....
Message
 
 
À
28/06/2002 18:17:21
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Divers
Thread ID:
00673417
Message ID:
00673538
Vues:
12
>Thanks. But I need to combine records of the same table. Thanks anyway.

The following code assumes that field 'keyfield' uniquely identifies the recors in the table.
SELECT t1.* ;
  FROM table_a t1, table_a t2 ;
  WHERE t1.keyfield <> t2.keyfield ;
  INTO CURSOR CombinedValues
--sb--
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform