MySQL :: MySQL 5.7 Reference Manual :: 11.1 Numeric Data Types (original) (raw)
MySQL supports all standard SQL numeric data types. These types include the exact numeric data types (INTEGER,SMALLINT,DECIMAL, andNUMERIC), as well as the approximate numeric data types (FLOAT,REAL, andDOUBLE PRECISION). The keywordINT is a synonym forINTEGER, and the keywordsDEC andFIXED are synonyms forDECIMAL. MySQL treatsDOUBLE as a synonym forDOUBLE PRECISION (a nonstandard extension). MySQL also treats REAL as a synonym for DOUBLE PRECISION (a nonstandard variation), unless theREAL_AS_FLOAT SQL mode is enabled.
The BIT data type stores bit values and is supported for MyISAM,MEMORY,InnoDB, andNDB tables.
For information about how MySQL handles assignment of out-of-range values to columns and overflow during expression evaluation, seeSection 11.1.7, “Out-of-Range and Overflow Handling”.
For information about storage requirements of the numeric data types, see Section 11.7, “Data Type Storage Requirements”.
For descriptions of functions that operate on numeric values, seeSection 12.6, “Numeric Functions and Operators”. The data type used for the result of a calculation on numeric operands depends on the types of the operands and the operations performed on them. For more information, see Section 12.6.1, “Arithmetic Operators”.