문제

I have a field in my database table, type of: double

How can I store a value like this: 0,001 in it?

I've already tried, but it's truncated into 0,00.

도움이 되었습니까?

해결책

You can set the number of decimal places as part of the table definition: colname double(4,3) allows one digit before the decimal and three digits after.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top