mysql indexof function usage instructions

mysql indexof function usage instructions

As shown below:

LOCATE(substr,str)

Returns the first occurrence of substring substr in string str. If substr is not in str, returns 0.

mysql> select LOCATE('bar', 'foobarbar'); -> 4 mysql> select LOCATE('xbar', 'foobar'); -> 0

Supplement: LOCATE() method similar to indexOf in MySQL

LOCATE(substr, str), LOCATE(substr, str, pos)

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:
  • Some common mistakes with MySQL null
  • Use of MySQL SHOW STATUS statement
  • Tips on MySQL query cache
  • In-depth explanation of InnoDB locks in MySQL technology
  • MySQL master-slave synchronization, implementation principle of transaction rollback
  • Summary of several error logs about MySQL MHA setup and switching

<<:  Docker binding fixed IP/cross-host container mutual access operation

>>:  JavaScript Reflection Learning Tips

Recommend

Nginx URL rewriting mechanism principle and usage examples

URL rewriting helps determine the preferred domai...

Vue implements bottom query function

This article example shares the specific code of ...

Issues installing Python3 and Pip in ubuntu in Docker

text 1) Download the Ubuntu image docker pull ubu...

Vue uses ECharts to implement line charts and pie charts

When developing a backend management project, it ...

How to set the memory size of Docker tomcat

When installing Tomcat in Docker, Tomcat may over...

How to write beautiful HTML code

What Beautiful HTML Code Looks Like How to write ...

js to implement file upload style details

Table of contents 1. Overview 2. Parameters for c...

How to optimize MySQL deduplication operation to the extreme

Table of contents 1. Clever use of indexes and va...

How to enhance Linux and Unix server security

Network security is a very important topic, and t...

Pure CSS to achieve a single div regular polygon transformation

In the previous article, we introduced how to use...

Deep understanding of the mechanism of CSS background-blend-mode

This article is welcome to be shared and aggregat...

In-depth understanding of MySQL long transactions

Preface: This article mainly introduces the conte...