================================================== ==============================
SQL statement (Executed with 4.26 Build 3)
================================================== ==============================
SELECT *
FROM artikel AS A LEFT OUTER JOIN bestellungenpos AS B ON A.lfdnr = B.artikel
ORDER BY lfdnr DESC
Tables Involved
---------------
artikel (A) table opened shared, has 1094 rows
bestellungenpos (B) table opened shared, has 251 rows
Result Set Generation
---------------------
Result set will be canned
Result set will consist of one or more rows
Result set will be ordered by the following column(s) using a case-sensitive
temporary index:
lfdnr DESC
Join Ordering
-------------
The driver table is the artikel table (A)
The artikel table (A) is joined to the bestellungenpos table (B) with the LEFT
OUTER JOIN expression:
A.lfdnr = B.artikel
Optimizer will attempt to re-order the joins to a more optimal order
Use the NOJOINOPTIMIZE clause at the end of the
SQL statement to force the
optimizer to leave the joins in their declared order
The joins are already in optimal order and cannot be optimized any further
Join Execution
--------------
Costs ARE NOT being taken into account when executing this join
Use the JOINOPTIMIZECOSTS clause at the end of the
SQL statement to force the
optimizer to consider costs when optimizing this join
The expression:
A.lfdnr = B.artikel
is OPTIMIZED
================================================== ==============================
>>>>> 1112 rows affected in 0,031 seconds
================================================== ==============================