Skip to content

MySQL Tutorial

Learn MySQL

Menu
  • Home
  • Data types
  • Functions
    • Aggregate Functions
    • Cast Functions
    • Comparison Functions
    • DATE Functions
    • Flow Control Functions
    • Math functions
    • String Functions
    • Window Functions
    • REGEXP Functions
    • JSON Functions
    • XML Functions
    • Information Functions
    • Encryption Functions

Category: MySQL

Learn MySQL Tutorial

MySQL LINESTRING

December 28, 2023
| No Comments
| MySQL

The LINESTRING data type in MySQL is part of the Spatial Data Types introduced to support spatial and geometric data in a relational database. It is specifically designed for storing and working with linear geometries, such as lines or linear paths, in a two-dimensional space. This feature is part of the MySQL Spatial Extensions, which […]

Read More »

MySQL POINT

December 28, 2023
| No Comments
| MySQL

The MySQL POINT data type is a spatial data type that represents a single point in a two-dimensional Cartesian coordinate system. It is commonly used in geographic information systems (GIS) and other applications that involve the storage and manipulation of spatial data. The POINT data type is part of MySQL’s spatial extensions, which provide support […]

Read More »

MySQL GEOMETRY

December 28, 2023
| No Comments
| MySQL

The MySQL GEOMETRY data type is a spatial data type used to represent geometric objects such as points, lines, and polygons. It is part of MySQL’s spatial extensions, which provide support for spatial data and spatial indexing. The GEOMETRY data type is used to store spatial data in a compact binary format. Introduction Here are […]

Read More »

MySQL SET

December 28, 2023
| No Comments
| MySQL

The MySQL SET data type is a string data type that can store zero or more values from a predefined set of values. This data type is often used to store a collection of categories or keywords that apply to a specific entity. For instance, a table that stores product information might use the SET […]

Read More »

MySQL ENUM

December 28, 2023
| No Comments
| MySQL

The MySQL ENUM data type is a column type that allows you to define a set of possible values for a column. It is particularly useful when a column should only have a limited, predefined set of values, and you want to restrict the data to those specific options. ENUM stands for “enumerated” and is […]

Read More »

MySQL BOOLEAN

December 28, 2023
| No Comments
| MySQL

MySQL does not have a dedicated BOOLEAN data type. Instead, MySQL historically represents boolean values using the TINYINT data type. However, it’s essential to note that the BOOLEAN data type was introduced in MySQL 8.0.3 and later versions to provide a more intuitive and standard way to handle boolean values. Here’s a brief overview of […]

Read More »

Posts pagination

Previous 1 … 28 29 30 … 39 Next

MySQL tutorial

  • MySQL Database
  • MySQL Create table
  • MySQL Insert
  • MySQL Update
  • MySQL Delete
  • MySQL Select
  • MySQL From
  • MySQL Where
  • MySQL Order By
  • MySQL Select distinct
  • MySQL AND
  • MySQL OR
  • MySQL IN
  • MySQL NOT IN
  • MySQL BETWEEN
  • MySQL LIKE
  • MySQL LIMIT
  • MySQL EXISTS
  • MySQL GROUP BY
  • MySQL HAVING
  • MySQL IS NULL
  • MySQL Joins
  • MySQL INNER JOIN
  • MySQL LEFT JOIN
  • MySQL RIGHT JOIN
  • MySQL CROSS JOIN
  • MySQL SELF JOIN
  • MySQL ROLLUP
  • MySQL Subquery
  • MySQL UNION
  • MySQL UNION ALL
  • MySQL EXCEPT
  • MySQL CASE
  • MySQL IF-THEN-ELSE

Recent Posts

  • MySQL SUBDATE function
  • MySQL STR_TO_DATE function
  • MySQL convert string to date
  • MySQL datetime format
  • MySQL create temporary table
  • MySQL current datetime
  • MySQL TRUNCATE
  • MySQL SHOW EVENTS
  • MySQL ALTER EVENT
  • MySQL DROP EVENT

© MySQL Tutorial 2025.