MySQL Forums
Forum List  »  General

Unable to print multiple output
Posted by: malru az
Date: September 02, 2016 03:23AM

Created a procedure to output two values but it is printing only the first output and not printing the next output, please check & let me know how to fix this issue.

create procedure output()
begin
SELECT '1';
SELECT '2';
END;

call output()


1
-
1

Options: ReplyQuote


Subject
Written By
Posted
Unable to print multiple output
September 02, 2016 03:23AM
September 03, 2016 05: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.