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

대괄호 사이의 텍스트를 제거하는 MySQL 쿼리?


먼저 테이블을 생성하겠습니다 -

mysql> create table DemoTable
   -> (
   -> Name text
   -> );
Query OK, 0 rows affected (0.47 sec)

삽입 명령을 사용하여 테이블에 일부 레코드 삽입 -

mysql> insert into DemoTable values('John [John] Smith');
Query OK, 1 row affected (0.30 sec)
mysql> insert into DemoTable values('[Carol] Carol Taylor');
Query OK, 1 row affected (0.17 sec)
mysql> insert into DemoTable values('David [Miller] Miller');
Query OK, 1 row affected (0.14 sec)

select 문을 사용하여 테이블의 모든 레코드 표시 -

mysql> select *from DemoTable;

이것은 다음과 같은 출력을 생성합니다-

+-----------------------+
| Name                  |
+-----------------------+
| John [John] Smith     |
| [Carol] Carol Taylor  |
| David [Miller] Miller |
+-----------------------+
3 rows in set (0.00 sec)

다음은 대괄호 사이의 텍스트를 제거하는 쿼리입니다-

mysql> select replace(Name,substring(Name,locate('[', Name), LENGTH(Name)
   -> - locate(']', reverse(Name)) - locate('[', Name) + 2), '') as Name
   -> from DemoTable;

이것은 다음과 같은 출력을 생성합니다 -

+---------------+
| Name          |
+---------------+
| John Smith    |
| Carol Taylor  |
| David Miller  |
+---------------+
3 rows in set (0.03 sec)