希望提高以下sql语句的性能,因为这需要7秒以上的时间来搜索850,000条记录。select c.productTitle , s1.catalogue_id FROM store s1 ON s1.catalogue_id = c.catalogue_id JOIN store s2
ON (s1.catalogue_id
我正在尝试对以下表优化我的内连接语句:products包含大约150.000行下面是我当前的查询ga.description_sp,ga.description_en,ga.metadescription_sp,ga.metadescription_enINNERJOIN products_category_mapping pcm on pcm.article
AND Event.event_id = Entry.event_id我试图用多个内部联接而不是普通联接重写同一个SQL语句这是我的尝试:FROM ((((Horse AS H1 INNERJOIN Horse AS H2 ON H1.horse_sire = H2.horse_id)
INNER</e