I saw that CockroachDB offers JOIN
support in this blog post, but it doesn't mention what level of JOIN
s are supported. Are all of the major types of joins supported, or are there limitations?
0
votes
1 Answers
1
votes
CockroachDB supports the major JOIN
types:
INNER
FULL OUTER
LEFT
RIGHT
If you need it, you can find the CockroachDB JOIN
documentation here.