mysql decimal allow negative values 3f

Solutions on MaxInterview for mysql decimal allow negative values 3f by the best coders in the world

showing results for - "mysql decimal allow negative values 3f"
Ivana
01 May 2016
1/*
2Negative values are allowed as long as the field is not specified to be unsigned.
3
4Standard SQL requires that DECIMAL(5,2) be able to store any value with five digits and two decimals,
5so values that can be stored in the salary column range from -999.99 to 999.99
6*/