带有一个查询的MySQL多字搜索

时间:2010-10-22 05:20:22

标签: mysql search text sql-like

我想在我的MySQL查询中进行ANDing或ORing,但无论如何LIMIT都必须相同。

例如。 SELECTION * FROM table WHERE text LIKE %word1 OR word2 OR word3% LIMIT 10

我希望这与Twitter上的工作方式相同。

1 个答案:

答案 0 :(得分:2)

SELECT * FROM table
WHERE (text LIKE %word1%) OR (text LIKE %word2%) 
OR (text LIKE %word3%) LIMIT 10