Answers for "mysql decimal negative"

SQL
1

mysql decimal allow negative values?

/*
Negative values are allowed as long as the field is not specified to be unsigned.

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
*/
Posted by: Guest on December-02-2020

Code answers related to "mysql decimal negative"

Code answers related to "SQL"

Browse Popular Code Answers by Language