Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Syntax error
Message
From
15/08/2007 14:54:30
 
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Title:
Environment versions
Visual FoxPro:
VFP 9 SP1
OS:
Windows XP
Database:
Visual FoxPro
Miscellaneous
Thread ID:
01247986
Message ID:
01248330
Views:
33
>The correct syntax even in VFP 9 is:
>
>delete from WorkTable;
>       from WorkTable;               && Double FROM clause
>inner join RecToDelete on WorkTable.telNo = RecToDelete.TelNo
>
>I am not sure if it exists in VFP8.

No, that's not right. You do repeat the Alias, but you don't use FROM twice:
delete WorkTable;
       from WorkTable;               
inner join RecToDelete on WorkTable.telNo = RecToDelete.TelNo
Tamar
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform