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