CREATE DEFINER=`root`@`localhost` PROCEDURE `test`(out myvalue int)
BEGIN
select count(*) from EventList_View group by eventId into myvalue ;
END
this is my Procedure i am calling this Procedure call test(@output);
select @output; like this but i am unable to get value of output parameter as myvalue . while i am trying to execute select count(*) from EventList_View group by eventId this query i am getting value 5 please tell me how to get output value where am doing wrong in procedure .