REAL
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
REAL[(<precision>[,<scale>])] [SIGNED | UNSIGNED] [ZEROFILL]
EXAMPLES
While Xpand accepts the REAL
data type on table create, it is silently replaced with DOUBLE
:
CREATE TABLE real_example (
example REAL
);
SHOW CREATE TABLE real_example\G
*************************** 1. row ***************************
Table: real_example
Create Table: CREATE TABLE `real_example` (
`example` double
) CHARACTER SET utf8 /*$ SLICES=3 */