Drop procedure if exists myfirstproc //
CREATE PROCEDURE myfirstproc (IN codx char(16), IN TableName char(20), OUT descr char(50))
BEGIN
select description into descr from TableName where cod = codx;
END;
//
IF you still see error, you may probably add a databasename,
which you use, before...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.