Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Multiple JOINS Permitted using SQL DELETE?
Message
From
16/10/2017 06:41:25
 
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Environment versions
Visual FoxPro:
VFP 9 SP1
OS:
Windows 7
Database:
Visual FoxPro
Miscellaneous
Thread ID:
01654971
Message ID:
01655028
Views:
57
>VFP 9 allowed the use of JOIN Syntax in SQL Deletes. Is there a limit to 1 JOIN?

No, there's not, so something else is going on. Is the query exactly what you're showing here or are you using outer joins?

Tamar

>When I created a DELETE SQL Command with multiple JOINS:
>
>DELETE tskdocs ;
> FROM tskdocs ;
> JOIN tasks ;
> ON Tskdocs.kd_t_id = Tasks.t_id ;
> JOIN taskdel ;
> ON Tasks.t_assgn_to = Taskdel.emp_no ;
>WHERE Taskdel.process AND Tasks.t_status = "I"
>
>The result was equivalent to:
>DELETE tskdocs ;
> FROM tskdocs ;
> JOIN tasks ;
> ON Tskdocs.kd_t_id = Tasks.t_id
>
>Even though the SQL Command:
>SELECT tskdocs.* ;
> FROM tskdocs ;
> JOIN tasks ;
> ON Tskdocs.kd_t_id = Tasks.t_id ;
> JOIN taskdel ;
> ON Tasks.t_assgn_to = Taskdel.emp_no ;
>WHERE Taskdel.process AND Tasks.t_status = "I"
>
>yields the correct result.
>
>Appears that only 1 JOIN is permitted in an SQL DELETE Command. Is this the case?
Previous
Reply
Map
View

Click here to load this message in the networking platform