DOUBLE PRECISION
This page is part of MariaDB's Documentation.
The parent of this page is: Data Types for MariaDB Xpand
Topics on this page:
Overview
See DOUBLE.
USAGE
DOUBLE PRECISION[(<precision>[,<scale>])] [SIGNED | UNSIGNED] [ZEROFILL]
EXAMPLES
While Xpand accepts the DOUBLE PRECISION
data type on table create, it is silently replaced with DOUBLE
:
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
) CHARACTER SET utf8 /*$ SLICES=3 */