From 684897c14d71969432c0e928a04418ffb5d34810 Mon Sep 17 00:00:00 2001 From: Raphael 'kena' Poss Date: Thu, 25 Oct 2018 23:27:22 +0200 Subject: [PATCH] Note that we do support (most) correlated joins now. --- v2.1/sql-faqs.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/v2.1/sql-faqs.md b/v2.1/sql-faqs.md index 063d67329f9..58deb2dc96f 100644 --- a/v2.1/sql-faqs.md +++ b/v2.1/sql-faqs.md @@ -52,10 +52,11 @@ Contention](performance-best-practices-overview.html#understanding-and-avoiding- ## Does CockroachDB support `JOIN`? -[CockroachDB supports uncorrelated SQL joins](joins.html). We are +[CockroachDB supports SQL joins](joins.html). We are working to improve their execution performance. -At this time, `LATERAL` (correlated) joins are not yet supported. +At this time, some correlated joins, including `LATERAL` joins, are +not yet supported. ## When should I use interleaved tables?