1

Using Studio 3T's SQL functionaliy, how do you query into the elements of an array stored within a document?

Studio 3T screenshot

Cade Bryant
  • 737
  • 2
  • 7
  • 19

1 Answers1

0

Did you try to change

select member

by

select member.child

In mongoDB, this is how we get elements from an object inside a document. It could work for an array.

Sixty
  • 1
  • 2