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.

Recent Posts

Guest Topic Name : Top 5 Must-Have Features Every Mobile App Needs to Succeed

Introduction Businesses understand the diverse requirements of mobile applications, which provide a competitive advantage. There…

3 hours ago

IoT Data Analytics: Ways to Gain Value from IoT Data

The Internet of Things (IoT) has recently changed the world. It links gadgets together and…

3 hours ago

The Rise of NFTs: Exploring the Impact of Non-Fungible Tokens on the Digital Economy

NFTs, or Non-Fungible Tokens, are revolutionizing the digital economy. These unique digital assets, authenticated through…

20 hours ago

Unveiling the Truth: Is the Spread of Sinus Infections a Myth or Reality?

Sinus infections, impacting approximately 31 million Americans each year, represent a significant health concern stemming…

2 days ago

Best Exercises To Reduce Weight & Keep You Stronger & Fitter!

No doubt that balanced weight is the key to wellness. So, when it comes to…

2 days ago

ARTIFICIAL INTELLIGENCE: Advantages And Disadvantages? Everything You Need to Know

Pros And Cons Of AI: Artificial Intelligence directly translates to conceptualizing and building machines that…

2 days ago