Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Can you 'force' a join order?
Message
 
À
Tous
Information générale
Forum:
Microsoft SQL Server
Catégorie:
Syntaxe SQL
Titre:
Can you 'force' a join order?
Divers
Thread ID:
00777788
Message ID:
00777788
Vues:
64
To all,

In Visual FoxPro, you can "force" the order in which a set of tables are joined. For example, with a hierarchicaly structured set of tables (say the classic Customers, Order, Line Items) you can force the order in which the tables are joined:

SELECT * ;
FROM Line_Items ;
WHERE li_OrderNum IN ;
(SELECT O.or_OrderNum ;
FROM FORCE Customers C ;
INNER JOIN Order O ;
ON O.or_CustNum = C.cs_CustNum ;
WHERE C.cs_CustName = 'FRED')

In this example, the join order of the sub select starts with Customers
(which is filtered) and goes to the Order table.

With larger queries, I've seen a 25% improvement in performance using the VFP "FORCE" clause.

Does T-SQL have an analog to VFP's 'FORCE' clause?

Regards,
Thom C.
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform