# MySQL Full-Text Search 使用 `Match()` 指定被搜索的欄位 和 `Against()` 指定要使用的搜索表達式 不區分大小寫 (除非使用 BINARY) e.g. ```sql= SELECT note_text FROM productnotes WHERE Match(note_text) Against('rabbit'); ``` 輸出 ![](https://i.imgur.com/r4FYJ1c.png) ###### tags: `MySQL`