A mysql-like php switch case statement.
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:
|
<<: Vue implements simple data two-way binding
>>: How to start tomcat using jsvc (run as a normal user)
The progress bar is not smooth I believe that mos...
First of all, let's talk about the execution ...
CSS 3 animation example - dynamic effect of Tab b...
With the popularization of 3G, more and more peop...
Table of contents 1. Problem Discovery 2. View de...
When using the font-family property in CSS to ref...
Today at work, a friend I added temporarily asked ...
This article shares the specific code for WeChat ...
In this blog, we will discuss ten performance set...
As a front-end developer, I can’t avoid IE’s pitf...
Mini Program Data Cache Related Knowledge Data ca...
What is a memory leak? A memory leak means that a...
Copy code The code is as follows: <form method...
background: The site is separated from the front ...
When I was working on a project recently, I found...