INTEGER Alias
TheINTEGER
alias is an alternative name for the INT
data type. For example, the following two queries are functionally the same:
It’s important to note that even though
INTEGER
is used, the data is stored and treated as INT
.LONG Alias
TheLONG
alias is often used to represent larger integer values. For example:
Any usage of
LONG
is stored and treated as BIGINT
.FLOAT Alias
TheFLOAT
alias corresponds to the REAL
data type. For example:
When you use
FLOAT
, it’s stored and treated as REAL
.DOUBLE Alias
TheDOUBLE
alias is used to define DOUBLE PRECISION
floating-point numbers. For example:
When you use
DOUBLE
, it’s stored and treated as DOUBLE PRECISION
.