In MySQL, the IF function is a control flow function that allows you to perform conditional logic within your queries. It provides a way to conditionally return different values or perform different actions based on a given condition.

if else in mysql

 

The syntax of the IF function in MySQL is as follows:

IF(condition, value_if_true, value_if_false)

condition: This is the expression or condition that is evaluated. It can be any valid expression that returns a boolean (TRUE or FALSE) or any value that can be implicitly converted to a boolean.
value_if_true: This is the value that is returned if the condition evaluates to TRUE. It can be a column, literal value, or an expression.
value_if_false: This is the value that is returned if the condition evaluates to FALSE. It can also be a column, literal value, or an expression.


The IF function works as follows:

1. It evaluates the condition.
2. If the condition is TRUE, it returns the value_if_true.
3. If the condition is FALSE, it returns the value_if_false.

The IF function can be used in various contexts, such as in SELECT statements, UPDATE queries, INSERT statements, and more, allowing you to perform conditional operations within your SQL queries.

Examples:

 

Performing a conditional select query

$age = 18;

$query = "SELECT name, IF(age >= :age, 'Adult', 'Minor') AS status FROM users";
$stmt = $pdo->prepare($query);
$stmt->bindParam(':age', $age);
$stmt->execute();

while ($row = $stmt->fetch(PDO::FETCH_ASSOC)) {
    echo $row['name'] . " - " . $row['status'] . "<br>";
}

This example selects the name column from the users table and uses the IF statement to determine whether the user is an adult or a minor based on their age.

Updating a table with a conditional update query

$quantity = 10;
$id = 1;

$query = "UPDATE products SET stock = IF(stock >= :quantity, stock - :quantity, 0) WHERE id = :id";
$stmt = $pdo->prepare($query);
$stmt->bindParam(':quantity', $quantity);
$stmt->bindParam(':id', $id);
$stmt->execute();

In this example, the IF statement is used within an UPDATE query to decrease the stock column of a product by a certain quantity (:quantity), but ensuring that the stock does not go below zero.

 

 

Inserting data into a table with a conditional insert query

$name = "John";
$age = 25;

$query = "INSERT INTO users (name, age, membership) VALUES (:name, :age, IF(:age >= 18, 'Premium', 'Basic'))";
$stmt = $pdo->prepare($query);
$stmt->bindParam(':name', $name);
$stmt->bindParam(':age', $age);
$stmt->execute();

 In this example, the IF statement is used within an INSERT query to determine the membership level of a user based on their age. If the age is 18 or above, the membership will be set to 'Premium'; otherwise, it will be set to 'Basic'.

 

 

 Performing a conditional select query with joined tables

$status = 'Active';

$query = "SELECT users.name, IF(orders.total > 100, 'High', 'Low') AS order_status
          FROM users
          INNER JOIN orders ON users.id = orders.user_id
          WHERE users.status = :status";

$stmt = $pdo->prepare($query);
$stmt->bindParam(':status', $status);
$stmt->execute();

while ($row = $stmt->fetch(PDO::FETCH_ASSOC)) {
    echo $row['name'] . " - " . $row['order_status'] . "<br>";
}

 In this example, the query selects the name column from the users table and uses the IF statement to determine the order status ('High' or 'Low') based on the total amount in the orders table. The tables are joined on the user_id column, and only users with the status 'Active' are considered.

 

 

Updating a table with a conditional update query involving joined tables

$threshold = 50;

$query = "UPDATE products
          INNER JOIN stock ON products.id = stock.product_id
          SET products.status = IF(stock.quantity > :threshold, 'Available', 'Out of stock')
          WHERE products.category = 'Electronics'";

$stmt = $pdo->prepare($query);
$stmt->bindParam(':threshold', $threshold);
$stmt->execute();

 In this example, the IF statement is used within an UPDATE query that involves joined tables. It updates the status column of the products table based on the quantity column in the stock table. If the quantity is above the given threshold, the status is set to 'Available'; otherwise, it is set to 'Out of stock'. Only products in the 'Electronics' category are considered.

 

 These examples showcase how to use the IF statement in MySQL queries involving joined tables with PHP PDO. Adjust the table and column names according to your specific database schema.