Can you guys help me regarding stored procedures. When I export a stored procedure from phpmyadmin, it is set as
CREATE DEFINER=`root`@`localhost` PROCEDURE `c4mo_get_cities_prc`(IN `p_state_code` VARCHAR(3), IN `p_country_code` VARCHAR(3), IN `p_language_code` VARCHAR(3)) NO SQL BEGIN SELECT city_name, city_code FROM `c4mo_cities` WHERE enabled = 'Y' AND language_code = p_language_code AND state_code = p_state_code AND country_code = p_country_code; END
And when I import it from phpmyadmin, it gives an error like
import php export stored-procedures phpmyadmin
Yuva Kumar
source share