私は実行時にエラーが発生しているストアプロシージャを実行するときにmysqlを使用しています。 クエリを実行すると実行されます。私はそれを修正するためにどのようにエロ...mysqlランタイムを修正するにはエラー
を取得していますストアドプロシージャを実行した後
CREATE DEFINER=`root`@`localhost` PROCEDURE
`sp_get_Ad_Img_Details_dummy1`(IN `xp_postId` VARCHAR(5))
BEGIN
select * FROM post_ad_list post_ad_list_al
INNER JOIN product_images product_images_al ON
product_images_al.pi_postid = post_ad_list_al.p_postId WHERE
p_postId=xp_postId;
END
call sp_get_Ad_Img_Details_dummy1('20170219074922');
...
Error
Static analysis:
1 errors were found during analysis.
Unrecognized keyword. (near "ON" at position 25)
SQL query: Edit Edit
SET FOREIGN_KEY_CHECKS = ON;
MySQL said: Documentation
#2014 - Commands out of sync; you can't run this command now
Thanks