Reader small image

You're reading from  Learn SQL using MySQL in One Day and Learn It Well

Product typeBook
Published inApr 2024
PublisherPackt
ISBN-139781836205678
Edition1st Edition
Right arrow
Author (1)
Jamie Chan
Jamie Chan
author image
Jamie Chan

Jamie Chan is a tutor and freelance programmer with years of experience and a dedicated passion for sharing the joy of programming with as many people as possible. With seven bestselling programming books on Amazon, Jamie's publications stand out for their ability to break down complex concepts into simple terms. Additionally, each book includes complete projects at the end, enabling hands-on learning and a deep understanding of the concepts presented.
Read more about Jamie Chan

Right arrow

CASE statement

 

Next, let’s move on to CASE statements.

 

The CASE statement is very similar to the IF statement and can often be used interchangeably. In most cases, choosing between IF and CASE is a matter of personal preference.

 

The syntax is:

 

CASE case_variable

WHEN value_1 THEN do task A;

WHEN value_2 THEN do task B;

...

ELSE do task Z;

END CASE;

 

Or

 

CASE

WHEN condition 1 is met THEN do task A;

WHEN condition 2 is met THEN do task B;

...

ELSE do task Z;

END CASE;

 

The first syntax allows you to match the value of a variable against a set of distinct values. The second syntax allows you to perform more complex matches such as matching using ranges.

 

Let’s look at some examples.

 

Example 1

 

DELIMITER $$

CREATE FUNCTION case_demo_A(x INT) RETURNS VARCHAR(255) DETERMINISTIC

BEGIN

 

CASE x

      WHEN 1 THEN RETURN 'x is 1';

&...

lock icon
The rest of the page is locked
Previous PageNext Page
You have been reading a chapter from
Learn SQL using MySQL in One Day and Learn It Well
Published in: Apr 2024Publisher: PacktISBN-13: 9781836205678

Author (1)

author image
Jamie Chan

Jamie Chan is a tutor and freelance programmer with years of experience and a dedicated passion for sharing the joy of programming with as many people as possible. With seven bestselling programming books on Amazon, Jamie's publications stand out for their ability to break down complex concepts into simple terms. Additionally, each book includes complete projects at the end, enabling hands-on learning and a deep understanding of the concepts presented.
Read more about Jamie Chan