MySQL은 부울 모드라는 또 다른 형태의 전체 텍스트 검색을 지원합니다. 부울 방식으로 다음 정보를 제공할 수 있습니다.
일치할 단어
1. 제외할 단어(행에 이 단어가 포함된 경우 반환되지 않음) , 다른 지정된 단어가 포함되어 있어도);
2. 배열 팁(일부 단어를 다른 단어보다 더 중요하게 지정하고 더 중요한 단어의 순위를 높게 지정)
3. 🎜>
4. 기타 콘텐츠. FULLTEXT 인덱스가 없어도 사용 가능 Boolean 접근 방식은 FULLTEXT 인덱스가 정의되지 않은 경우에도 사용할 수 있다는 점에서 지금까지 사용된 전체 텍스트 검색 구문과 다릅니다. 그러나 이는 매우 느린 작업입니다(데이터 양이 증가하면 성능이 저하됩니다). IN BOOLEAN MODE의 기능을 보여주기 위해 간단한 예를 들어보겠습니다. 입력:select note_text from productnotes where match(note_text) against('anvils' in boolean mode);
select note_text from productnotes where match(note_text) against('heavy -rope' in boolean mode);
select note_text from productnotes where match(note_text) against('+rabbit +bait' in boolean mode);
select note_text from productnotes where match(note_text) agains('rabbit bait' in boolean mode);
select note_text from productnotes where match(note_text) agains('"rabbit bait"' in boolean mode);
select note_text from productnotes where match(note_text) agains('>rabbit <bcarrot' in boolean mode);
select note_text from productnotes where match(note_text) agains('+safe +(<combination)' in boolean mode);
위 내용은 mysql 부울 텍스트 검색 튜토리얼의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!