MySQL Tutorial

MySQL Tutorial MySQL Features MySQL Database Introduction MySQL Environmental Setup MySQL Data Types MySQL variable MySQL Advance table Query MySQL database queries MySQL Entity-Relationship Model MySQL Table Query MySQL Operators MySQL logical conditions MySQL Queries MySQL Clauses Clustered vs Non-Clustered Index MySQL Full text index MySQL Descending Index MySQL Invisible Index MySQL Composite Index MySQL Prefix index MySQL Index MySQL Create index MySQL Drop Index MySQL Show index MySQL Unique index MySQL Table MySQL Variable MySQL View MySQL Constraints MySQL Command Line Client Basic Queries MySQL Stored Procedure MySQL IF Statement MySQL Subquery MySQL Triggers

MySQL Join

MySQL Join MySQL CROSS JOIN MySQL DELETE JOIN MySQL EQUI JOIN MySQL INNER JOIN MySQL Union MySQL NATURAL JOIN MySQL RIGHT JOIN MySQL SELF JOIN MySQL UPDATE JOIN

MySQL Function

MySQL Function MySQL AVG() Function MySQL SUM() Function MySQL String() Function MySQL Advance() Function MySQL Aggregate() Function MySQL COALESCE() Function MySQL Control Flow Function MySQL COUNT() Function MySQL Date And Time Function MySQL GREATEST() Function MySQL ISNULL() Function MySQL LEAST() Function MySQL Math() Function MySQL MAX() Function MySQL MIN() Function MySQL find_in_set() function MySQL ASIN() Function MySQL CEIL() function MySQL CEILING() function MySQL TAN() Function MySQL Truncate() Function MySQL FLOOR() function MySQL LN() function MySQL LOG2() function MySQL LOG10() function MySQL MOD() function MySQL PI() function MySQL POW() function MySQL RADIANS() function MySQL RAND() function MySQL ROUND() function MySQL Character Length Function MySQL Current Date Function MySQL Date Add Function MySQL Date Format Function MySQL Datediff Function MySQL Day Function MySQL Elt Function MySQL Export Set Function MySQL Field Function MySQL Format Function MySQL From Base64 Function MySQL Hex Function MySQL Insert Function MySQL Instr Function MySQL Length Function MySQL CONCAT() function MySQL FIND_IN_SET() function MySQL LIKE() function MySQL LOAD_FILE() function MySQL LOCATE() function MySQL LOG() function MySQL MONTHNAME() function MySQL NOW() function MySQL PERIOD_ADD() function MySQL PERIOD_DIFF() function MySQL POWER() function MySQL QUARTER() function MySQL REVERSE() function MySQL RIGHT() Function MySQL RPAD() function MySQL RTRIM() function MySQL SEC_TO_TIME() function MySQL SOUNDEX() function

Questions

Which Clause is Similar to Having Clause in MySQL

Misc

MySQL Error 1046 - No Database Selected Failed to Start MySQL Service Unit MySQL Service Unit not Found Import MySQL Connector Mudule not Found Error No Module Named MySQL Joins Available in MySQL MySQL Docs MySQL Download For Windows 7 64 Bit MySQL Error Code 1064 MySQL Export MySQL History MySQL Host MySQL Import MySQL Drop All Tables MySQL Drop MySQL Error Code 1175 MySQL Events MySQL Except MYSQL Foreign Key Constraint MySQL If Exists MySQL IndexOf MySQL List All Tables json_extract in MySQL TIMESTAMPDIFF in MySQL MySQL Syntax Checker Sudo MySQL Secure Installation

MySQL Control flow function

The control flow function uses values or operands for logical operations. These functions can works on single and multiple conditions. The control flow function is based on the Boolean expression. It controls and manages table data as per requirement.  The Boolean expressions mean 0 (null) value and 1(not null) value. The below table shows the type of the control flow function.

MySQL IF statementThe IF statement shows the true condition of the control flow function.
MySQL IFNULL statementThe IFNULL statement shows null or not null of the data.
MySQL NULLIF statementThe NULLIF statement works on the not null value of the data.
MySQL CASE statementThis statement works on multiple conditions.

MySQL IF statement

The first condition is necessary to display the result. The other condition is optional in the "IF" statement. The IF statement shows the true condition of the control flow function.

Example of the IF statement

Example: the "IF" statement with true condition example shows below.

Execute the below statement that shows the first condition is true.

mysql> SELECT IF(7 = 7, 'equal', 'not_equal');

Output

MySQL control flow function

 The above output image shows equal output because when the condition becomes true, the query shows the first expression like equal.

Example: the "IF" statement with false condition example shows below.

Execute the below statement that shows the first condition is false.

mysql> SELECT IF(7 = 13,'equal','not_equal');

Output

MySQL control flow function

The above output image shows not equal output because when the condition becomes false, the query shows a second expression like not equal.

MySQL IFNULL statement

The IFNULL statement shows the null or not null result of the control flow function. If the first condition is not null, it returns the first condition. If the first condition is null, then it returns the second condition. This statement contains string and numeric values.

Examples of the IFNULL statement

The "IFNULL" statement with true condition example shows below.

Execute the below query to understand the working procedure of numerical values and their output.

mysql> SELECT IFNULL(1, 0);

Output

MySQL control flow function

The above image shows the first value of the condition. If the first value is not null, then MySQL displays these values. The above query shows one output.

MySQL NULLIF statement

The IF statement shows the true condition of the control flow function. The first condition shows equal to the second condition, then it returns the first condition value. The first condition shows the "not equal" to the second condition then the query returns the second condition value.

Examples of the NULLIF statement

Example: the "NULLIF" statement with true condition example shows below.

Execute the below query to understand the working procedure of NULLIF and their output.

mysql> SELECT NULLIF(1, 0);

Output

MySQL control flow function

The above image shows the first value of the condition. If the first value shows the "not equal" to the second value, MySQL displays the first value.

Example: the "NULLIF" statement example shows below.

mysql> SELECT NULLIF (1, 1);

Output

MySQL control flow function

The above returns the above output. If the first value is equal to the second value, then MySQL displays the NULL value. The above query shows the NULL output.

MySQL CASE statement

The case statement works as "if else" and "if then else" statements. This statement works on multiple conditions in a single query. If the first condition is true, then returns the first condition. If the first condition is false, then it uses other conditions.

Example: the "CASE" statement with numerical and string value example shows below.

Execute the below query to get the required value using a case statement. Here, you can use string values with the "CASE" and their conditions.

mysql> SELECT CASE 'MON' WHEN 'SUN' THEN 'SUNDAY' WHEN 'MON' THEN 'MONDAY' ELSE 'OTHERS' END;

Output

MySQL control flow function

The above image displays string values with given conditions. The first row of the table shows the case statement with value. The second row displays the output value. The output table shows the "MONDAY" value.