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

Author: mysqltutor_05ut1l

MySQL SUBDATE function

February 29, 2024
| No Comments
| MySQL

The SUBDATE function in MySQL is a built-in function used to subtract a specified time interval from a date. This function is useful for manipulating date values, particularly when you need to calculate dates in the past relative to a given date. It allows you to subtract days, weeks, months, and even years from a […]

Read More »

MySQL STR_TO_DATE function

February 29, 2024
| No Comments
| MySQL

The STR_TO_DATE function in MySQL is a powerful tool for converting string data into a date or datetime format, enabling easier manipulation and querying of date-based data within a database. This function is particularly useful when you are dealing with data imported from external sources where dates might be represented as strings in various formats. […]

Read More »

MySQL convert string to date

February 29, 2024
| No Comments
| MySQL

MySQL, a prominent open-source relational database management system, is widely utilized for its flexibility, reliability, and robust performance in handling large datasets. One common task in database management and data analysis is converting strings to dates. This conversion is crucial for sorting, filtering, and performing date arithmetic on data stored as text. In this article, […]

Read More »

MySQL datetime format

February 28, 2024
| No Comments
| MySQL

MySQL is a powerful relational database management system (RDBMS) that is widely used for web database applications. One of the critical features of MySQL is its ability to handle date and time values, which are essential for almost every database application. Understanding the MySQL datetime format is crucial for developers and database administrators to ensure […]

Read More »

MySQL create temporary table

February 28, 2024
| No Comments
| MySQL

Temporary tables are a feature of MySQL that provide a convenient way of storing and manipulating intermediate results within your database operations. They are designed to be a short-lived storage mechanism that allows developers and database administrators to work with temporary data without affecting the main database schema and data. Here’s an extensive overview of […]

Read More »

MySQL current datetime

February 28, 2024
| No Comments
| MySQL

MySQL, a widely used open-source relational database management system, offers various functions to handle date and time values efficiently. One of the most important aspects of database management and application development is the ability to work with current date and time values. MySQL provides several functions for this purpose, including NOW(), CURDATE(), CURTIME(), and UNIX_TIMESTAMP(), […]

Read More »

Posts pagination

1 2 … 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.