NUMBER
Oracle-compatible synonym for DECIMAL. This type is used for fixed-point arithmetic.
NUMBER[(M[,D])] [SIGNED | UNSIGNED | ZEROFILL]EXAMPLES
SET sql_mode='oracle';CREATE TABLE number_example (
example NUMBER
);SHOW CREATE TABLE number_example\G*************************** 1. row ***************************
Table: number_example
Create Table: CREATE TABLE "number_example" (
"example" double DEFAULT NULL
)Last updated
Was this helpful?

