what's the purpose/point of the REAL() Datatype in mysql? You have float,double and decimal which i understand but where does the "real" datatype come into it? Any ideas?
Thank you in advance ;-)
is real the same as float or double?
what's the purpose/point of the REAL() Datatype in mysql? You have float,double and decimal which i understand but where does the "real" datatype come into it? Any ideas?
Thank you in advance ;-)
is real the same as float or double?
MySQL treats
REAL
as a synonym forDOUBLE
, unless theREAL_AS_FLOAT
SQL mode is enabled.
From the documentation:
MySQL also treats REAL as a synonym for DOUBLE PRECISION (a nonstandard variation), unless the REAL_AS_FLOAT SQL mode is enabled.