0
votes

I saw that CockroachDB offers JOIN support in this blog post, but it doesn't mention what level of JOINs are supported. Are all of the major types of joins supported, or are there limitations?

1

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.