Jump to content

Index Help


jaymc

Recommended Posts

I have a query that is taking 2+ seconds to execute

 

So, I really need to add some indexes to speed things up

 

Attached is the query and the EXPLAIN

 

Can anyone give any suggestions on fields I should index?

 

explain
SELECT ts.id, ts.originator, ts.mobile, ts.message, DATE_FORMAT(ts.date, '%b %e at %l:%i%p') date, ts.status, tc.name, tc.numTotalMessages, tc.numSentMessages, DATE_FORMAT(tc.date, '%b %e at %l:%i%p') date, tr.report
FROM media_1.texts_sent ts
INNER JOIN media_1.text_campaign tc ON ts.campaignID = tc.id

LEFT JOIN( SELECT report, textID FROM media_1.texts_report ORDER BY date DESC ) AS tr ON ts.id = tr.textID

WHERE ts.campaignID = '6' AND ts.userID = '1'
GROUP BY ts.id
ORDER BY ts.date DESC
LIMIT 0,50

 

[attachment deleted by admin]

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.