我需要在两个表上选择任何单词(关键字搜索),我所做的查询是这样的:
SELECT t1.fname, t1.lname, t2.* FROM t1 , t2
WHERE t2.title LIKE "%test%"
OR t2.desc LIKE "%test%"
OR t2.inc LIKE "%test%"
OR t1.fname LIKE "%test%"
OR t1.lname LIKE "%test%"
AND t1.c_id = t2.c_id;
由于数据库中有大量数据,这个特定的搜索(使用'test'关键字)需要几分钟,我想知道如何优化它。 我尝试使用LEFT JOIN,但似乎我做错了 - 因为结果差不多,但查询执行得非常快。
就像这样:
SELECT * FROM t2 AS a
LEFT JOIN t1 AS b ON a.c_id = b.c_id
WHERE a.desc LIKE '%test%'
OR a.title LIKE '%test%'
OR a.inc LIKE '%test%'
OR b.fname LIKE '%test%'
OR b.lname LIKE '%test%';
非常感谢任何帮助......谢谢。
答案 0 :(得分:2)
您的第一个陈述不符合您的意图:AND
子句需要precedence超过OR
,因此您实际上已经写了
t2.title LIKE "%test%"
OR t2.desc LIKE "%test%"
OR t2.inc LIKE "%test%"
OR t1.fname LIKE "%test%"
OR (t1.lname LIKE "%test%" AND t1.c_id = t2.c_id;)
这最终导致t1和t2之间的(稍微偏斜) natural join返回很多行。
答案 1 :(得分:2)
尝试 MATCH..AGAINST 搜索 MyISAM 表的多个列:
SELECT *
FROM t2 AS a
INNER JOIN t1 AS b ON a.c_id = b.c_id
WHERE MATCH (a.desc, a.title, a.inc, b.fname, b.lname) AGAINST ('test')