本文介紹了MySQL:列包含單詞列表中的單詞的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!
問題描述
我有一個單詞列表。讓我們假設它們是‘Apple’、‘Orange’和‘Pear’。我在數據庫中有這樣的行:
------------------------------------------------
|author_id | content |
------------------------------------------------
| 54 | I ate an apple for breakfast. |
| 63 | Going to the store. |
| 12 | Should I wear the orange shirt? |
------------------------------------------------
我正在查找InnoDB表上的查詢,該查詢將返回第一行和第三行,因為content
列包含列表中的一個或多個單詞。我知道我可以為我列表中的每個單詞查詢一次表,并使用LIKE和%通配符,但我想知道是否有針對這種情況的單一查詢方法?
推薦答案
編輯:
類似以下內容:
SELECT * FROM yourtable WHERE content LIKE '%apple%' OR content LIKE '%orange%'
您可以循環使用單詞來創建WHERE子句條件。
例如:
$words = array( 'apple', 'orange' );
$whereClause = '';
foreach( $words as $word) {
$whereClause .= ' content LIKE "%' . $word . '%" OR';
}
// Remove last 'OR'
$whereClause = substr($whereClause, 0, -2);
$sql = 'SELECT * FROM yourtable WHERE' . $whereClause;
echo $sql;
Output:
SELECT * FROM yourtable WHERE content LIKE "%apple%" OR content LIKE "%orange%"
這篇關于MySQL:列包含單詞列表中的單詞的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,