Reputation: 1163
Everything is in the title: if I do a select query across several tables, how many outer joins
can I use? As many tables there are?
Upvotes: 0
Views: 117
Reputation: 3399
Typically the DBMS limit will be higher than you should ever need. There is a common sense limit in terms of how many joins to use for effective querying. This needs to be part of your over all design consideration ( your app, your db schema \ indexing, etc. )
Upvotes: 1
Reputation: 3299
See "Tables per SELECT statement": Maximum Capacity Specifications for SQL Server
Upvotes: 3