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 REGEXP Functions

January 6, 2024
| No Comments
| MySQL

MySQL provides several REGEXP (regular expression) functions that allow you to work with regular expressions in your SQL queries. Regular expressions are powerful patterns that are used for pattern matching within strings. Here are some of the key MySQL REGEXP functions: REGEXP The REGEXP function is used in the WHERE clause to perform a regular […]

Read More »

MySQL Window Functions

January 6, 2024
| No Comments
| MySQL

MySQL Window Functions are powerful tools that allow you to perform calculations across a set of table rows related to the current row. These functions are particularly useful when you need to analyze and derive insights from your data based on specific ordering or partitions within your result set. Here are some commonly used MySQL […]

Read More »

MySQL Information Functions

January 6, 2024
| No Comments
| MySQL

MySQL provides various information functions that allow you to retrieve details about the database server, user sessions, and other relevant information. Here’s an overview of some of the key information functions: Function Description CONNECTION_ID() Returns the unique connection identifier for the current session. Useful for identifying different connections in a multi-user environment. CURRENT_ROLE() Returns the […]

Read More »

MySQL Encryption and Compression Functions

January 6, 2024
| No Comments
| MySQL

MySQL provides encryption and compression functions that allow users to enhance the security and performance of their databases. Two commonly used encryption functions in MySQL are MD5 and SHA2. MD5 Overview: MD5 is a widely used cryptographic hash function that produces a 128-bit hash value (32 characters) from any input data. While MD5 is no […]

Read More »

MySQL XML Functions

January 6, 2024
| No Comments
| MySQL

MySQL XML functions, including EXTRACTVALUE and UPDATEXML, provide powerful tools for working with XML data within a relational database environment. These functions are particularly useful when dealing with scenarios where XML information needs to be extracted, manipulated, or updated within a MySQL database. Common Usage Both EXTRACTVALUE and UPDATEXML are commonly used for various tasks […]

Read More »

MySQL Cast Functions

January 6, 2024
| No Comments
| MySQL

MySQL provides the CAST and CONVERT functions to perform explicit type conversions, allowing you to convert data from one data type to another. Both functions essentially serve the same purpose, but there are some differences in their syntax and usage. CAST function The CAST() function is used to explicitly convert an expression or a value […]

Read More »

Posts pagination

Previous 1 … 5 6 7 … 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.