DOUBLE PRECISION
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 DOUBLE.
EXAMPLES
CREATE TABLE double_precision_example (
example DOUBLE PRECISION
);
SHOW CREATE TABLE double_precision_example\G
*************************** 1. row ***************************
Table: double_precision_example
Create Table: CREATE TABLE `double_precision_example` (
`example` double DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1