MySQL case when usage example analysis

MySQL case when usage example analysis

First we create the database table:

CREATE TABLE `t_demo` (
 `id` int(32) NOT NULL,
 `name` varchar(255) DEFAULT NULL,
 `age` int(2) DEFAULT NULL,
 `num` int(3) DEFAULT NULL,
 PRIMARY KEY (`id`)
)ENGINE=InnoDB DEFAULT CHARSET=utf8;

Insert data:

INSERT INTO `t_demo` VALUES ('1', '张三', '21', '69');
INSERT INTO `t_demo` VALUES ('2', 'Li Si', '22', '98');
INSERT INTO `t_demo` VALUES ('3', '王五', '20', '54');
INSERT INTO `t_demo` VALUES ('4', '赵甜', '22', '80');

MySQL case when usage

SELECT
  *,
CASE
  WHEN t.num >= 85 THEN
    'excellent' 
  WHEN t.num < 90 AND t.num>= 60 THEN
    'generally'
  ELSE
    'Failure'
  END AS level
FROM
  t_demo t;

Query structure:

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Example of using judgment statements (IF ELSE/CASE WHEN) in SQL Server
  • MySQL cleverly uses sum, case and when to optimize statistical queries
  • Solve the problem of mybatis case when error
  • Oracle uses decode function or CASE-WHEN to implement custom sorting
  • This article will show you how to use SQL CASE WHEN in detail

<<:  Nginx improves access speed based on gzip compression

>>:  Vue implements start time and end time range query

Recommend

Axios secondary encapsulation example Demo in the project

1. Why do packaging? Facilitates overall code cal...

Design Tips: We think you will like it

<br />Looking at this title, you may find it...

Various ways to modify the background image color using CSS3

CSS3 can change the color of pictures. From now o...

How to shut down/restart/start nginx

closure service nginx stop systemctl stop nginx s...

Advantages and disadvantages of Table layout and why it is not recommended

Disadvantages of Tables 1. Table takes up more byt...

Tutorial on installing jdk1.8 on ubuntu14.04

1. Download jdk download address我下載的是jdk-8u221-li...

Sample code for changing the color of a png image through a CSS3 filter

This method uses the drop-shadow filter in CSS3 t...

15 important variables you must know about MySQL performance tuning (summary)

Preface: MYSQL should be the most popular WEB bac...

How to clear the cache after using keep-alive in vue

What is keepalive? In normal development, some co...

Linux uses lsof command to check file opening status

Preface We all know that in Linux, "everythi...

Several ways to encrypt and decrypt MySQL (summary)

Table of contents Written in front Two-way encryp...

A collection of information about forms and form submission operations in HTML

Here we introduce the knowledge about form elemen...

MySQL incremental backup and breakpoint recovery script example

Introduction Incremental backup means that after ...

Alibaba Cloud Centos7.3 installation mysql5.7.18 rpm installation tutorial

Uninstall MariaDB CentOS7 installs MariaDB instea...