|
The return statement exits the function. Thus, you need to place all the items in a list and return them at the end of your function. If you have lots of return statements only returning one value, then it will exit the function when it comes to the first return statement it finds.
You also need to do some further parsing. You may have the right tables, but you still need to pull the right information out of them.
|