Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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);
share|improve this question
2  
What happens if @_credit is typed as DECIMAL as well? (That is, could it be typed as something else by chance?) – user166390 Sep 13 '12 at 0:34

1 Answer

up vote 10 down vote accepted

Because you didn't specify the precision and scale that's why it's rounding the value. The precision represents the number of significant digits that are stored for values, and the scale represents the number of digits that can be stored following the decimal point. By default, the value of the precision is 10 and the value of scale is 0. So, RETURNS DECIMAL is the same as RETURNS DECIMAL(10,0). If the scale is 0, DECIMAL values contain no decimal point or fractional part. Try specifying in to your function.

RETURNS DECIMAL(5,2) -- 999.99

DECIMAL, NUMERIC

SQLFiddle Sample

share|improve this answer
very helpful, thank you – Howard Guo Sep 15 '12 at 23:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.