NUMERIC
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
See DECIMAL.
EXAMPLES
CREATE TABLE numeric_example (
example NUMERIC
);
SHOW CREATE TABLE numeric_example\G
*************************** 1. row ***************************
Table: numeric_example
Create Table: CREATE TABLE `numeric_example` (
`example` decimal(10,0) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1