Answered
Need to query array information -- more than 1D
I'm writing a Facebook app, and want to compare my user db
with some returned information from Facebook. I'm getting the
correct info from FB, as an array with a structure inside it. It's
not letting me use ArrayToList, so I'm assuming that's because of
the structure.
When I use the code that's attached, it does loop through the data, and returns all the correct information.
What I am completely vaporlocked on is how to use the data returned from that loop to query against, as in:
SELECT foo
FROM bar
WHERE uid IN (loop of correct information)
I feel like this should be pretty damn easy, and it's making me want to poke my eyes out. Many thanks in advance, and please let me know if you need additional information.
When I use the code that's attached, it does loop through the data, and returns all the correct information.
What I am completely vaporlocked on is how to use the data returned from that loop to query against, as in:
SELECT foo
FROM bar
WHERE uid IN (loop of correct information)
I feel like this should be pretty damn easy, and it's making me want to poke my eyes out. Many thanks in advance, and please let me know if you need additional information.