The original query might be my issue. I'm pulling it from an array of JSON objects that looks something like this:
{
"entry" : [
{
"dataName" : "user",
"dataValue" : "bob"
},
{
"dataName" : "ip",
"dataValue" : "1.1.1.1"
}
]
}
I used mvzip and mvexpand to get the first table, but that lost the "entry" grouping.
... View more