I made this simple function, and the result returns 1 rather than 0.5
What did I do wrong?
DELIMITER //
DROP FUNCTION IF EXISTS test_decimal //
CREATE FUNCTION test_decimal(input DECIMAL)
RETURNS DECIMAL
BEGIN
SET @_credit = 0.5;
RETURN input * @_credit;
END //
DELIMITER ;
SELECT test_decimal(1);

@_creditis typed as DECIMAL as well? (That is, could it be typed as something else by chance?) – user166390 Sep 13 '12 at 0:34