Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Deleted() in where clause
Message
De
21/10/1999 15:51:50
 
 
À
21/10/1999 15:40:23
Information générale
Forum:
Visual FoxPro
Catégorie:
Base de données, Tables, Vues, Index et syntaxe SQL
Divers
Thread ID:
00279565
Message ID:
00279580
Vues:
11
You will need to pass through a temporary cursor:
SELECT * FROM TableA WHERE NOT DELETED() INTO CURSOR curTemp
SELECT * FROM curTemp;
   INNER JOIN TableB ON curTemp.PK = TableB.FK;
   INNER JOIN TableC ON curTemp.PK = TableC.FK
HTH
>Dear Sylvain, I want to filter out deleted record from main source table only. The other two ones, also can contain deleted records, but data of these records must be visible in query result.
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform