DO YOU NEED A CONTENT WRITER FOR YOUR BUSINESS?

Your One-Stop Solution for All Content Needs! Click here for more!
Categories: MySQL

MySQL CASE Statement

Share

MySQL has an alternative of IF statement i.e. MySQL CASE statement by which you can check conditional statement.

Besides the IF statement in MySQL, this provides an alternative conditional statement i.e. called CASE. The MySQL CASE statement makes the programming code more readable and efficient.

You can use the simple CASE statement to check the value of an expression against a set of unique values.

Expression of MySQL CASE:

CASE  case_condition
   WHEN exp_1 THEN statement
   WHEN exp_2 THEN statement
   ...
   ELSE statement
END CASE;

The following example shows how to use the simple CASE statement:

DELIMITER $$
CREATE PROCEDURE GetUserType(
 out user_tag varchar(50))
BEGIN
    DECLARE userCountry varchar(50);
    SELECT country INTO userCountry
  FROM users;
 
 CASE userCountry
 WHEN  'USA' THEN
 SET user_tag = 'US-07';
 WHEN 'UK' THEN
 SET user_tag = 'UK-02';
 ELSE
 SET user_tag = 'NO-95';
 END CASE;
END$$

The simple CASE statement only allows you to match a value of an expression against a set of distinct values.

Read Also: Listing stored procedures in MySQL

In order to perform one or more complex matches such as ranges, you can use the searched CASE statement. The searched CASE statement is equivalent to the IF statement, however, its construct is much more readable.

MySQL checks each condition in the WHEN clause. Until it finds a condition whose value is TRUE, then corresponding commands in the THEN clause will get executed.

Namaste UI

For any types of queries, you can contact us on info[at]namasteui.com.

Recent Posts

Why is SEO a non-negotiable part of modern marketing?

In a world where digital presence is paramount, the question isn't whether you should do…

7 hours ago

Innovations in Hair Care: Exploring Breakthroughs for Lasting Results

Over the years, people have experimented with various methods to maintain healthy and beautiful hair.…

1 day ago

How To Strengthen Your Brand-Building Efforts?

Your brand more than developing an attractive and creative logo and infectious motto. It's the…

2 days ago

How To Be Successful And Maximize Compensation In A Personal Injury Case

Introduction Are you someone who has suffered from a personal injury and want to file…

2 days ago

What Are The Biggest Challenges Of Working From Home?

Operating from home has emerged as one of the most popular ways of doing jobs…

3 days ago

Art As An Asset: Will NFT’s Help You Survive Hyperinflation?

If the consequences of our society’s ever-growing debt are what worries you, then it is…

4 days ago