As shown below: LOCATE(substr,str)Returns the first occurrence of substring substr in string str. If substr is not in str, returns 0.
Supplement: LOCATE() method similar to indexOf in MySQL
The first syntax returns the position of the first occurrence of substr in string str. The second syntax returns the position of the first occurrence of the string substr in the string str, starting at position pos. If substr is not in str, the return value is 0. question: There are multiple subjects, multiple choice questions under one subject, and four answers (ABCD) for each question. Count the number of ABCD choices for each question in each subject. SELECT sum( CASE WHEN (LOCATE('A', option name) > 0) THEN 1 ELSE 0 END ) AS A, sum( CASE WHEN (LOCATE('B', option name) > 0) THEN 1 ELSE 0 END ) AS B, sum( CASE WHEN (LOCATE('C', option name) > 0) THEN 1 ELSE 0 END ) AS C, sum( CASE WHEN (LOCATE('D', option name) > 0) THEN 1 ELSE 0 END ) AS D FROM Table name The above is my personal experience. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM. If there are any mistakes or incomplete considerations, please feel free to correct me. You may also be interested in:
|
<<: Docker binding fixed IP/cross-host container mutual access operation
>>: JavaScript Reflection Learning Tips
URL rewriting helps determine the preferred domai...
This article example shares the specific code of ...
text 1) Download the Ubuntu image docker pull ubu...
Take MySQL 5.7.19 installation as an example, fir...
When developing a backend management project, it ...
When installing Tomcat in Docker, Tomcat may over...
What Beautiful HTML Code Looks Like How to write ...
Table of contents 1. Overview 2. Parameters for c...
Table of contents 1. Clever use of indexes and va...
The future of CSS is so exciting: on the one hand,...
Network security is a very important topic, and t...
In the previous article, we introduced how to use...
Table of contents Current Issues Solution process...
This article is welcome to be shared and aggregat...
Preface: This article mainly introduces the conte...