ayetler表格=6500行
fihristayet表=13279行
sql查询:
SELECT ayetler.ayet_tr
FROM fihristayet,ayetler
WHERE (fihristayet.fihristAyet_ayet=ayetler.ayet_no AND
fihristayet.fihristAyet_sure_id=ayetler.sure_id)
AND fihristayet.fihristAyet_fihrist_id=354
我有15排返回。为什么记录在40秒后到达
1条答案
按热度按时间sczxawaw1#
首先,学会使用恰当的、明确的、标准的语言
JOIN
语法。不要在句子中使用逗号FROM
条款。因此,您的查询应该如下所示:然后你想打开索引
fihristayet(fihristAyet_fihrist_id, fihristAyet_ayet, fihristAyet_sure_id)
以及ayetler(ayet_no, sure_id)
.