Post date: Dec 9, 2013 10:58:47 AM
DELIMITER //
CREATE FUNCTION test (aport int(11)) RETURNS int(11)
BEGIN
RETURN aport;
END;