Computer >> 컴퓨터 >  >> 프로그램 작성 >> MySQL

MySQL의 VARCHAR 필드에서 문자열의 발생 횟수를 계산하시겠습니까?

<시간/>

VARCHAR에서 문자열의 발생 횟수를 계산하기 위해 길이를 사용하여 빼기 논리를 사용할 수 있습니다. 먼저 create 명령을 사용하여 테이블을 생성합니다.

mysql> create table StringOccurrenceDemo
   -> (
   -> Cases varchar(100),
   -> StringValue varchar(500)
   -> );
Query OK, 0 rows affected (0.56 sec) 

위의 테이블을 실행한 후 테이블에 레코드를 삽입합니다. 쿼리는 다음과 같습니다 -

mysql> insert into StringOccurrenceDemo values('First','This is MySQL Demo and MySQL is an open source RDBMS');
Query OK, 1 row affected (0.07 sec)

mysql> insert into StringOccurrenceDemo values('Second','There is no');
Query OK, 1 row affected (0.20 sec)

mysql> insert into StringOccurrenceDemo values('Third','There is MySQL,Hi MySQL,Hello MySQL');
Query OK, 1 row affected (0.17 sec)

select 문을 사용하여 모든 레코드를 표시합니다.

mysql> select *From StringOccurrenceDemo;

다음은 출력입니다.

+--------+------------------------------------------------------+
| Cases  | StringValue                                          |
+--------+------------------------------------------------------+
| First  | This is MySQL Demo and MySQL is an open source RDBMS |
| Second | There is no                                          |
| Third  | There is MySQL,Hi MySQL,Hello MySQL                  |
+--------+------------------------------------------------------+
3 rows in set (0.00 sec)

다음은 "MySQL" 문자열의 발생 횟수를 계산하는 쿼리입니다. 결과는 'NumberOfOccurrenceOfMySQL'열에 표시됩니다.

mysql> SELECT Cases,StringValue,
   -> ROUND (
   -> (
   -> LENGTH(StringValue)- LENGTH( REPLACE (StringValue, "MySQL", "") )
   -> ) / LENGTH("MySQL")
   ->  ) AS NumberOfOccurrenceOfMySQL
   -> from StringOccurrenceDemo;

다음은 출력입니다.

+--------+------------------------------------------------------+---------------------------+
| Cases  | StringValue                                          |  NumberOfOccurrenceOfMySQL|
+--------+------------------------------------------------------+---------------------------+
| First  | This is MySQL Demo and MySQL is an open source RDBMS |                         2 |
| Second | There is                                             |                         0 |
| Third  | There is MySQL,Hi MySQL,Hello MySQL                  |                         3 |
+--------+------------------------------------------------------+---------------------------+
3 rows in set (0.05 sec)

위의 출력은 'MySQL' 문자열의 발생 횟수를 찾았음을 보여줍니다.