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 REGEXP_LIKE

January 2, 2024
| No Comments
| MySQL

The REGEXP_LIKE function in MySQL is used to perform regular expression matching in a query. It allows you to search for a specified pattern within a string column and retrieve rows that match the pattern. This function returns a boolean value, indicating whether the pattern is present in the specified column. Syntax Here is the […]

Read More »

MySQL REGEXP_INSTR

January 2, 2024
| No Comments
| MySQL

The REGEXP_INSTR function in MySQL is used to search for a regular expression pattern in a string and return the position of the first occurrence of the pattern. It is particularly useful when you want to find the starting position of a substring that matches a specified regular expression within a larger string. Syntax Here […]

Read More »

MySQL REGEXP

January 2, 2024
| No Comments
| MySQL

The MySQL REGEXP function is used for pattern matching in strings using regular expressions. Regular expressions are powerful functions for searching, matching, and manipulating text based on patterns. The REGEXP function in MySQL allows you to perform pattern matching using regular expressions in your queries. Syntax The basic syntax of the REGEXP function in MySQL […]

Read More »

MySQL MATCH

January 2, 2024
| No Comments
| MySQL

The MySQL MATCH function is used in the context of full-text search to perform searches against a table that has a FULLTEXT index. This function is particularly useful when you want to search for specific words or phrases within a text column efficiently. The MATCH function is commonly used in conjunction with the AGAINST keyword […]

Read More »

MySQL TRIM

January 2, 2024
| No Comments
| MySQL

The MySQL TRIM function is a string manipulation function that allows you to remove specified prefixes or suffixes from a given string. Its primary purpose is to trim (remove) characters from the beginning, end, or both ends of a string. This can be useful for cleaning up data, especially when dealing with user input or […]

Read More »

MySQL RTRIM

January 2, 2024
| No Comments
| MySQL

The MySQL RTRIM function is used to remove trailing spaces from a given string. Trailing spaces refer to the spaces that appear at the end of a string. This function is particularly useful when dealing with data where spaces at the end may affect comparisons or display. The RTRIM function operates by scanning a string […]

Read More »

Posts pagination

Previous 1 … 19 20 21 … 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.