Re: Long execution time despite LIMIT 3
It somehow seems I might be getting there:
I could rewrite the SELECT as follows:
(SELECT m.*, m.flags + 0 flags
FROM messages_test m
WHERE (m.thread = 817549.001266066) AND (id_user_s = 817549) AND (del_s = 0))
UNION
(SELECT m.*, m.flags + 0 flags
FROM messages_test m
WHERE (m.thread = 817549.001266066) AND (id_user_r = 817549) AND (del_r = 0))
order by id desc
LIMIT 3;
and have indexes like:
test1 (thread,id_user_r,del_r)
test2 (thread,id_user_s,del_s)
What do you think?
Subject
Views
Written By
Posted
2780
June 19, 2011 12:47PM
1009
June 19, 2011 12:54PM
1147
June 20, 2011 06:33PM
1166
June 20, 2011 11:44PM
Re: Long execution time despite LIMIT 3
1119
June 21, 2011 02:06AM
1164
June 21, 2011 07:23AM
945
June 21, 2011 07:28AM
1099
June 21, 2011 10:33AM
1155
June 21, 2011 10:08PM
1531
June 22, 2011 12:33AM
1087
June 22, 2011 07:26PM
980
June 22, 2011 11:45PM
1087
June 23, 2011 08:53AM
1086
June 24, 2011 02:51AM
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.