Re: SQL Newbie needs urgently help! [optimizing query]
Hm, I wonder about MySQL's decision for the index usage. Categories, aka item_t1, is joined last and there's a condition that can use the primary key of that table.
Could you try adding "FORCE INDEX(PRIMARY)" right after "Categories item_t1"? Maybe MySQL tries to avoid reading the value for SourcePK (key_len 92 seems huge), but there are only two rows expected to be read, which should make that still perform a lot better than reading 18000 rows from Categories to perform the checks for the other conditions...
Subject
Views
Written By
Posted
3786
January 24, 2007 05:31AM
2467
January 24, 2007 05:52AM
2345
January 24, 2007 06:07AM
2408
January 24, 2007 06:18AM
2260
January 24, 2007 06:41AM
2328
January 24, 2007 07:16AM
2394
January 24, 2007 08:16AM
2471
January 24, 2007 08:50AM
2282
January 24, 2007 09:10AM
2475
January 24, 2007 09:24AM
2590
January 24, 2007 10:29AM
2394
January 24, 2007 10:40AM
Re: SQL Newbie needs urgently help! [optimizing query]
2301
January 24, 2007 03:19PM
2233
January 25, 2007 07:27AM
2322
January 24, 2007 07:16AM
2446
January 24, 2007 07:32AM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.