Is it possible to declare parameters with some table struct type in "EMBEDDED MYSQL Procedure" ?
CREATE PROCEDURE Product_p()
BEGIN
DECLARE ProductValue ProductTable;
Is it possible to declare parameters with some table struct type in "EMBEDDED MYSQL Procedure" ?
CREATE PROCEDURE Product_p()
BEGIN
DECLARE ProductValue ProductTable;
There are two options:
temporary table
, and select in your procedure
.