NUMBER
This page is part of MariaDB's Documentation.
The parent of this page is: Data Types for MariaDB Enterprise Server
Topics on this page:
Overview
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
)