Appendix D. MySQL Datatypes
This appendix explains the different datatypes used in MySQL.
As explained in Chapter 1, “Understanding SQL,” datatypes are basically rules that define what data may be stored in a column and how that data is actually stored.
Datatypes are used for several reasons:
Datatypes enable you to restrict the type of data that can be stored in a column. For example, a numeric datatype column only accepts numeric values.
Datatypes allow for more efficient storage, internally. Numbers and date time values can be stored in a more condensed format than text strings.
Datatypes allow for alternate sorting orders. If everything is treated as strings,
1comes before10, which comes before2. (Strings are sorted in dictionary sequence, one ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access