What do scale and precision mean when specifying a

2019-03-09 06:20发布

I'm creating a decimal field to hold a financial figure in Doctrine2 for my Symfony2 application.

Currently, it looks like this:

/**
 * @ORM\Column(type="decimal")
 */
protected $rate;

When I entered a value and said value was persisted to the database, it was rounded to an integer. I'm guessing that I need to set the precision and scale types for the field, but I need someone to explain exactly what they do?

The Doctrine2 documentation says:

precision: The precision for a decimal (exact numeric) column (Applies only for decimal column)

scale: The scale for a decimal (exact numeric) column (Applies only for decimal column)

But that doesn't tell me an awful lot.

I'm guessing precision is the number of decimal places to round to, so I assume that should be 2, but what is scale? Is scale the significant figures?

Should my field declaration be this? :-

/**
 * @ORM\Column(type="decimal", precision=2, scale=4)
 */
protected $rate;

4条回答
叼着烟拽天下
2楼-- · 2019-03-09 06:40

Just a quick note: I had to remove the quotes from the attributes precision and scale, like so:

@ORM\Column(type="decimal", precision=8, scale=2)
查看更多
别忘想泡老子
3楼-- · 2019-03-09 06:48
 * @ORM\Column(type="decimal", precision=10, scale=2)
查看更多
男人必须洒脱
4楼-- · 2019-03-09 06:58

Doctrine uses types similar to the SQL types. Decimal happens to be a fixed precision type (unlike floats).

Taken from the MySQL documentation:

In a DECIMAL column declaration, the precision and scale can be (and usually is) specified; for example:

salary DECIMAL(5,2)

In this example, 5 is the precision and 2 is the scale. 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.

Standard SQL requires that DECIMAL(5,2) be able to store any value with five digits and two decimals, so values that can be stored in the salary column range from -999.99 to 999.99.

查看更多
聊天终结者
5楼-- · 2019-03-09 07:03
@Column(type="decimal", precision=5, scale=2) means 123.45
查看更多
登录 后发表回答