I have an object like this in drill:
{MyFruit: [{name:Mike, age:10},{name:Jacob,age:9},{name:William, age:6}]}
I can get "Mike" by doing:
Select MyFruit[0].name
Is there a way for me to get the list of every single "name"? I tried the following and it does not like it:
Select MyFruit[*].name