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

Your Complete Guide to the 461 Visa: Building a Life in Australia with Your New Zealand Partner

People usually stumble onto the 461 visa when they realise there’s no simple way to…

16 hours ago

Why Roarbank Is Transforming Everyday Banking in India

In today’s digital era, people look for convenience, transparency, and genuine rewards from their financial…

19 hours ago

Quality with Quantity: Importing LED Lights Can Save You Big Bucks

If you are planning to start a lighting business and looking for a supplier of…

2 days ago

11 Reasons Why Avoiding Plagiarism is Necessary for SEO and content marketing

If you are a copywriter or a content marketer, you will second my statement that…

4 days ago

6 Common Injuries After a Motorcycle Accident

Motorcycle accidents often lead to severe injuries because riders have minimal protection compared to drivers…

1 week ago

How Automation And SEO Can Improve Customer Experience

No business owner starts his or her business with the hope of making losses. Everyone…

1 week ago