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 IS NULL

December 1, 2023
| No Comments
| MySQL

In MySQL, the IS NULL condition is used to check whether a specific column in a table contains a NULL value. NULL is a special marker in the database that indicates the absence of data in a particular field. It is not the same as an empty string or zero; rather, it represents the lack […]

Read More »

MySQL LIMIT

December 1, 2023
| No Comments
| MySQL

In the context of MySQL, the LIMIT clause is used to constrain the number of rows returned by a query. It is particularly useful when dealing with large datasets, as it allows you to retrieve only a specified number of rows from the result set. Syntax The basic syntax of the LIMIT clause is as […]

Read More »

MySQL LIKE

December 1, 2023
| No Comments
| MySQL

The MySQL LIKE operator is a powerful tool for searching and retrieving data from database tables based on pattern matching. It is commonly used in conjunction with the SELECT statement to filter rows that match a specified pattern within a specified column. The LIKE operator is particularly useful when you need to perform wildcard searches […]

Read More »

MySQL BETWEEN

December 1, 2023
| No Comments
| MySQL

The MySQL BETWEEN operator is a logical operator that is used to filter the results of a query based on a specified range of values. It is commonly employed in the WHERE clause of a SELECT statement to retrieve rows with values falling within a particular range. Syntax The basic syntax of the BETWEEN operator […]

Read More »

MySQL NOT IN

December 1, 2023
| No Comments
| MySQL

The NOT IN operator in MySQL is a powerful tool used in SQL queries to filter records based on a specified list of values. It is the negation of the IN operator and is used to exclude rows where the specified value matches any value in a given list. The basic syntax of the NOT […]

Read More »

MySQL IN

December 1, 2023
| No Comments
| MySQL

The MySQL IN operator is a powerful and convenient tool used in SQL queries to simplify the process of searching for values within a specified range or set. It allows you to specify multiple values in a WHERE clause, making the query more concise and readable. The IN operator is particularly useful when you want […]

Read More »

Posts pagination

Previous 1 … 36 37 38 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.