I am trying to create stored procedure in mysql but showing following errors..
1064 - 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 '' at line 6
Procedure as bellow..
CREATE PROCEDURE getSchools( IN masterschools_id int )
BEGIN
select * from masterschools where id =masterschools_id;
END