Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

MYSQL Stored Procedures If statement Problem

I'm working with Mysql 5.1.28-rc on freebsd. I've just decided to use stored procedures in MYSQL and created a test procedure as below:

DELIMITER $$ 
DROP PROCEDURE IF EXISTS test $$
CREATE PROCEDURE test( IN test VARCHAR(22) )
BEGIN
 DECLARE count INT(11);
 SET count = (SELECT COUNT(*) FROM Test WHERE test_column = test );
 SELECT count;
 IF count = 0 THEN
  SET count = 1;
 ELSE
  SET count = 2;
 ENDIF;
END $$
DELIMITER;

This procedure works well without IF statement in it , but with the if statement it gives, ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '; END'

How can I solve this issue? Where is the problem?

like image 723
systemsfault Avatar asked Jul 17 '09 08:07

systemsfault


2 Answers

ENDIF requires a space in MySQL doesn't it? i.e. END IF

like image 146
David M Avatar answered Oct 04 '22 08:10

David M


Just need space in end if in the stored procedure

like image 37
mona Avatar answered Oct 04 '22 06:10

mona