summaryrefslogtreecommitdiffstats
path: root/www/eqp.html
diff options
context:
space:
mode:
Diffstat (limited to 'www/eqp.html')
-rw-r--r--www/eqp.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/www/eqp.html b/www/eqp.html
index b4e68fa..fff35c6 100644
--- a/www/eqp.html
+++ b/www/eqp.html
@@ -271,7 +271,7 @@ QUERY PLAN
</pre></div>
<p>
- All joins in SQLite are <a href="optoverview.html#table_order">implemented using nested scans</a>. When a
+ All joins in SQLite are <a href="optoverview.html#joins">implemented using nested scans</a>. When a
SELECT query that features a join is analyzed using EXPLAIN QUERY PLAN, one
SCAN or SEARCH record is output for each nested loop. For example:
</p><div class="codeblock"><pre>sqlite&gt; EXPLAIN QUERY PLAN SELECT t1.*, t2.* FROM t1, t2 WHERE t1.a=1 AND t1.b>2;