How can I fetch the result of a stored procedure which FROM clause is a subquery (that has 3 JOINS)? I did a model ('cause of FROM (...) AS tabla), but it only returns null
(I'm using fetchAll()
). And in MySQL the procedure works perfectly.
This post is marked as solved. If you think the information contained on this thread must be part of the official documentation, please contribute submitting a pull request to its repository.
How can I fetch the result of a stored procedure which FROM clause is a subquery (that has 3 JOINS)? I did a model ('cause of FROM (...) AS tabla), but it only returns null
(I'm using fetchAll()
). And in MySQL the procedure works perfectly.