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 YEAR

December 26, 2023
| No Comments
| MySQL

MySQL has a data type called YEAR that is specifically designed to store and represent year values. This data type is useful when you need to store and retrieve years without the need for month or day information. The YEAR data type can store values in the range of 1901 to 2155, with the additional […]

Read More »

MySQL TIMESTAMP

December 26, 2023
| No Comments
| MySQL

The MySQL TIMESTAMP data type is used to store date and time values, representing a specific point in time. It is commonly used to track changes to records in database tables, such as when a row was created or last updated. The TIMESTAMP data type in MySQL has several characteristics and options that make it […]

Read More »

MySQL DATETIME

December 26, 2023
| No Comments
| MySQL

The DATETIME data type in MySQL is used to store date and time values in a combined format. It is a fundamental data type that allows you to represent a specific point in time with both date and time components. The DATETIME format is ‘YYYY-MM-DD HH:MM:SS’, where: YYYY represents the four-digit year. MM represents the […]

Read More »

MySQL TIME

December 26, 2023
| No Comments
| MySQL

The TIME data type in MySQL is used to store and represent time values. It allows you to store time information without a date component. This data type is particularly useful when you need to store and manipulate time-based data, such as the duration of an event, the time of day, or the execution time […]

Read More »

MySQL DATE

December 26, 2023
| No Comments
| MySQL

The MySQL DATE data type is used to store dates in the format ‘YYYY-MM-DD.’ It represents a calendar date without any time component. MySQL provides several date-related data types, including DATE, TIME, DATETIME, and TIMESTAMP, each serving different purposes. In this explanation, we’ll focus specifically on the DATE data type. Syntax Here are some key […]

Read More »

MySQL BLOB

December 26, 2023
| No Comments
| MySQL

In MySQL, the BLOB (Binary Large Object) data type is used to store binary data, such as images, audio, video, or any other type of raw binary information. BLOBs can store large amounts of data, and they are suitable for handling files or content that cannot be easily represented as plain text. There are four […]

Read More »

Posts pagination

Previous 1 … 29 30 31 … 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.