I have written stored procedure for calling URL using http_get function but getting error that http_get not exist
DELIMITER $$
CREATE DEFINER=`root`@`localhost` PROCEDURE `Demo`()
BEGIN
SELECT http_get('abc.com/aa') ;
END$$
DELIMITER ;