키워드를 기준으로 결과를 표시하려면 다음 구문과 같이 LIKE 연산자를 사용하십시오 -
select *from yourTableName where yourColumnName LIKE '%yourValue%';
먼저 테이블을 생성하겠습니다 -
mysql> create table DemoTable812(Comments text); Query OK, 0 rows affected (0.61 sec)
삽입 명령을 사용하여 테이블에 일부 레코드 삽입 -
mysql> insert into DemoTable812 values('Good Looking'); Query OK, 1 row affected (0.19 sec) mysql> insert into DemoTable812 values('Awesome'); Query OK, 1 row affected (0.18 sec) mysql> insert into DemoTable812 values('Looking Gorgeous'); Query OK, 1 row affected (0.09 sec) mysql> insert into DemoTable812 values('Good Luck'); Query OK, 1 row affected (0.20 sec) mysql> insert into DemoTable812 values('Have a nice day'); Query OK, 1 row affected (0.21 sec)
select 문을 사용하여 테이블의 모든 레코드 표시 -
mysql> select *from DemoTable812;
이것은 다음과 같은 출력을 생성합니다 -
+------------------+ | Comments | +------------------+ | Good Looking | | Awesome | | Looking Gorgeous | | Good Luck | | Have a nice day | +------------------+ 5 rows in set (0.00 sec)
다음은 MySQL LIKE를 사용하여 검색 시스템을 만들고 키워드를 기반으로 결과를 표시하는 쿼리입니다 -
mysql> select *from DemoTable812 where Comments LIKE '%Look%';
이것은 다음과 같은 출력을 생성합니다 -
+------------------+ | Comments | +------------------+ | Good Looking | | Looking Gorgeous | +------------------+ 2 rows in set (0.00 sec)