Can a MySql stored procedure / function return a table without the use of temp table?
Creating the following procedure
CREATE PROCEDURE database.getE
According to A.4 MySQL 5.6 FAQ: Stored Procedures and Functions:
A.4.14: Can MySQL 5.6 stored routines return result sets? Stored procedures can, but stored functions cannot.
Stored procedures can, but stored functions cannot.