CREATE DEFINER=`root`@`localhost` FUNCTION `getTopSpeakerRate`() RETURNS int(11) DETERMINISTIC BEGIN declare topRate float default 0; select max(rate) into topRate from events.speaker; RETURN topRate; END
quality education for all
CREATE DEFINER=`root`@`localhost` FUNCTION `getTopSpeakerRate`() RETURNS int(11) DETERMINISTIC BEGIN declare topRate float default 0; select max(rate) into topRate from events.speaker; RETURN topRate; END