Synonym for FLOAT. This keyword declares a single-precision floating-point column.
See FLOAT.
CREATE TABLE float4_example (
example FLOAT4
);SHOW CREATE TABLE float4_example\G*************************** 1. row ***************************
Table: float4_example
Create Table: CREATE TABLE `float4_example` (
`example` float DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1This page is: Copyright © 2025 MariaDB. All rights reserved.