create procedure fails!?
Posted
by Mark
on Stack Overflow
See other posts from Stack Overflow
or by Mark
Published on 2010-06-07T14:29:26Z
Indexed on
2010/06/07
14:32 UTC
Read the original article
Hit count: 181
Hi, when trying to create a simple procedure in mysql 5.1.47-community it fails everytime i've tried everything! even simple things like this!
DELIMITER //
CREATE PROCEDURE two ()
begin
SELECT 1+1;
end;
//
© Stack Overflow or respective owner