MySQL case when group by example

MySQL case when group by example

A mysql-like php switch case statement.

  1. select xx field,
  2. Case Field
  3. when condition 1 then value 1
  4. when condition 2 then value 2
  5. else other value END alias
  6. from table name;

Here is an example of group summation:

select sum(redpackmoney) as stota,ischeck 
from t_redpack
group by isCheck

Use case when :

select sum(redpackmoney) as stota,
(CASE isCheck WHEN '1' THEN 'checktrue' WHEN '0' THEN 'uncheck' WHEN '-1' THEN 'checkfalse' ELSE 'unknow' END) as checkinfo 
from t_redpack
group by isCheck

In checkinfo, -1, 0, 1 are replaced with checkfalse, uncheck, checktrue (CASE WHEN performs string replacement processing)

The above is a simple example of using the case when statement in MySQL.

You may also be interested in:
  • MySQL case when usage example analysis
  • Detailed example of using case statement in MySQL stored procedure
  • Example of using CASE WHEN in MySQL sorting
  • In-depth analysis of the Identifier Case Sensitivity problem in MySQL
  • Detailed explanation of Mysql case then usage
  • mysql update case update field value is not fixed operation

<<:  Vue implements simple data two-way binding

>>:  How to start tomcat using jsvc (run as a normal user)

Recommend

JS implements a detailed plan for the smooth version of the progress bar

The progress bar is not smooth I believe that mos...

A comparison between the href attribute and onclick event of the a tag

First of all, let's talk about the execution ...

CSS3 Tab animation example background switching dynamic effect

CSS 3 animation example - dynamic effect of Tab b...

Solution to 700% CPU usage of Linux process that cannot be killed

Table of contents 1. Problem Discovery 2. View de...

Summary of English names of Chinese fonts

When using the font-family property in CSS to ref...

Using iframe techniques to obtain visitor QQ implementation ideas and sample code

Today at work, a friend I added temporarily asked ...

WeChat applet realizes left-right linkage

This article shares the specific code for WeChat ...

JavaScript determines whether the browser is IE

As a front-end developer, I can’t avoid IE’s pitf...

Application and implementation of data cache mechanism for small programs

Mini Program Data Cache Related Knowledge Data ca...

Vue: Detailed explanation of memory leaks

What is a memory leak? A memory leak means that a...

Use image to submit the form instead of using button to submit the form

Copy code The code is as follows: <form method...

Nginx external network access intranet site configuration operation

background: The site is separated from the front ...

CSS3+HTML5+JS realizes the shrinking and expanding animation effect of a block

When I was working on a project recently, I found...