SQL - Float

Data System Architecture

About

Float is a sql datatype is floating point number implemented as single precision float (32 bit)

Syntax

float [ (n) ]

where:

  • n is the number of bits that are used to store the mantissa

Storage

n value Precision Storage size
1-24 7 digits 4 bytes
25-53 15 digits 8 bytes





Discover More
Data System Architecture
Number - Floating-point (system|notation) - (Float|Double) - Approximate numeric

The term floating point refers to the fact that the number's radix point can float, that is, it can be placed anywhere relative to the significant digits of the number. They are fractional numbers...
Data System Architecture
SQL - Data Type

The Data Type of a column in SQL. They are defined in the ANSI/ISO SQL standard but may vary from sql engine (database) to another. The below table shows you the history of the data type in the ANSI...
Data System Architecture
SQL - Double

SQL DOUBLE is a SQL data type that represent a floating point number with a double precision double precisionfloat(53)



Share this page:
Follow us:
Task Runner