Field Types
Explore the various field types available in MySQL and their usage.
Field Types in MySQL
- Text
A text field can hold any string, such as names, addresses, or descriptions.
- Integer
An integer field stores whole numbers, such as 3, 42, or 100.
-
Table Reference
This field type links to a record in another table. It's useful for maintaining relationships between tables. -
Enum
An enum allows you to store a specific set of values, like a multiple-choice field.
- Timestamp
Timestamps in MySQL store the number of seconds since the Unix epoch, useful for time-based data.
-
Date
A simple date field, typically used for storing birth dates or other date-based values. -
Boolean
A boolean field storesTRUE
orFALSE
values. -
Decimal
This type stores numbers with decimal points, ideal for representing money or measurements. -
Email
An email field stores email addresses, ensuring proper formatting. -
Password
A password field stores encrypted passwords for security. -
JSON
JSON fields allow you to store structured, hierarchical data like arrays or objects.
- Geography
For geographical data, MySQL supports spatial data types like points, paths, and polygons.
TODO:
- Document all types