Using Studio 3T's SQL functionaliy, how do you query into the elements of an array stored within a document?
Asked
Active
Viewed 915 times
Using Studio 3T's SQL functionaliy, how do you query into the elements of an array stored within a document?
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.