简体   繁体   中英

Not able to create stored procedure in mysql

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

Tried this and its working properly...

 create DEFINER=products@localhost procedure getMyschools ()
  NOT DETERMINISTIC NO SQL SQL SECURITY DEFINER
select * from masterschools;

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM