Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Deleted() in where clause
Message
From
21/10/1999 15:51:50
 
 
To
21/10/1999 15:40:23
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Miscellaneous
Thread ID:
00279565
Message ID:
00279580
Views:
12
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.
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform