MySQL data types

Página 7

MySQL is a relational database management system (RDBMS) that uses SQL (Structured Query Language) for data manipulation. One of the most important features of MySQL is the definition of data types that can be used. Data types are used to specify the type of data a column can store in the database. MySQL supports many data types in several categories: numeric data types, datetime data types, string data types (character and byte), spatial data types, etc.

Numeric Data Types

In MySQL, numeric data types are used to store numeric values. They can be divided into two types: exact and approximate. Exact types include INTEGER, SMALLINT, DECIMAL, and NUMERIC, while approximate types include FLOAT, REAL, and DOUBLE.

INTEGER is used to store whole numbers, while SMALLINT is used to store smaller integers. DECIMAL and NUMERIC are used to store numbers with many digits where precision is important. FLOAT, REAL, and DOUBLE are used to store floating point numbers where precision may be compromised for speed.

Date and Time Data Types

The datetime data types in MySQL are used to store datetime information. They include DATE, TIME, DATETIME, TIMESTAMP, YEAR, etc.

DATE is used to store a date. The date format is 'YYYY-MM-DD'. TIME is used to store a time. The time format is 'HH:MM:SS'. DATETIME is used to store a date and time. The datetime format is 'YYYY-MM-DD HH:MM:SS'. TIMESTAMP is used to store a timestamp. The timestamp format is 'YYYYMMDDHHMMSS'. YEAR is used to store one year. The year format is 'YYYY'.

String Data Types

The string data types in MySQL are used to store strings. They include CHAR, VARCHAR, BINARY, VARBINARY, BLOB, TEXT, ENUM, and SET.

CHAR is used to store fixed length strings. VARCHAR is used to store variable length strings. BINARY is similar to CHAR, but stores binary strings. VARBINARY is similar to VARCHAR, but stores binary strings. BLOB is used to store large amounts of binary data. TEXT is used to store large amounts of text. ENUM is used to store strings that have a limited number of predefined values. SET is similar to ENUM, but can store multiple values.

Spatial Data Types

Spatial data types in MySQL are used to store geographic information such as points, lines, and polygons. They include POINT, LINESTRING, POLYGON, GEOMETRY, etc.

POINT is used to store a point in space. LINESTRING is used to store a line in space. POLYGON is used to store a polygon in space. GEOMETRY is a generic data type that can store any type of spatial data.

In short, data types in MySQL are an essential part of the database design. They help ensure that data is stored efficiently and accurately, and that database operations are performed correctly. Therefore, it is important to understand the different data types and how to use them when creating tables and manipulating data in MySQL.

Now answer the exercise about the content:

What are the different data types supported by MySQL and what are their functions?

You are right! Congratulations, now go to the next page

You missed! Try again.

Next page of the Free Ebook:

8Primary and Foreign Keys in MySQL

Earn your Certificate for this Course for Free! by downloading the Cursa app and reading the ebook there. Available on Google Play or App Store!

Get it on Google Play Get it on App Store

+ 6.5 million
students

Free and Valid
Certificate with QR Code

48 thousand free
exercises

4.8/5 rating in
app stores

Free courses in
video, audio and text