Re: Using temp table in Stored procedure help
Read the manual about stored routines and delimiters.
DELIMITER go -- set delimiter for stored routine creation
CREATE PROCEDURE SP_ExposureByStock()
BEGIN
...
END; -- terminating semicolon was missing
go -- delimiter tells mysql proc code ends here
DELIMITER ; -- restore standard interactive delimiter
Subject
Views
Written By
Posted
Re: Using temp table in Stored procedure help
262
May 25, 2020 12:07PM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.