Error 1305: does not exist
Error Code
SQLSTATE
Error
Description
Possible Causes and Solutions
CALL Reset_animal_count();
ERROR 1305 (42000): PROCEDURE test.Reset_animal_count does not exist
SELECT Reset_animal_count();
ERROR 1305 (42000): FUNCTION test.Reset_animal_count does not existDELIMITER //
CREATE PROCEDURE Reset_animal_count()
MODIFIES SQL DATA
UPDATE animal_count SET animals = 0;
//
Query OK, 0 rows affected (0.032 sec)
DELIMITER ;
CALL Reset_animal_count();
Query OK, 0 rows affected (0.001 sec)Last updated
Was this helpful?

