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

MySQL에서 MATCH 및 AGAINST를 사용하여 특정 열의 문자열을 포함하는 행 선택

<시간/>

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

mysql> create table DemoTable1833
     (
     Name varchar(20)
     );
Query OK, 0 rows affected (0.00 sec)

테이블 변경 -

Mysql> alter table DemoTable1833 ADD FULLTEXT(Name);
Query OK, 0 rows affected, 1 warning (0.00 sec)
Records: 0  Duplicates: 0  Warnings: 1

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

mysql> insert into DemoTable1833 values('John Doe');
Query OK, 1 row affected (0.00 sec)
mysql> insert into DemoTable1833 values('Adam Smith');
Query OK, 1 row affected (0.00 sec)
mysql> insert into DemoTable1833 values('Chris Brown');
Query OK, 1 row affected (0.00 sec)
mysql> insert into DemoTable1833 values('John Smith');
Query OK, 1 row affected (0.00 sec)

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

mysql> select * from DemoTable1833;

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

+-------------+
| Name        |
+-------------+
| John Doe    |
| Adam Smith  |
| Chris Brown |
| John Smith  |
+-------------+
4 rows in set (0.00 sec)

다음은 특정 열에 문자열이 포함된 행을 선택하는 쿼리입니다.

mysql> select * from DemoTable1833 where MATCH(Name) AGAINST('+John Smith+') ;

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

+------------+
| Name       |
+------------+
| John Smith |
| John Doe   |
| Adam Smith |
+------------+
3 rows in set (0.00 sec)