Jump to content

anna2003

New Members
  • Posts

    2
  • Joined

  • Last visited

    Never

Posts posted by anna2003

  1. Hello,

     

    I have a query that is very slow. This query used the date field to find urls that are less than 30 days old.

     

    In order to speed up this query, I indexed the date field. Evem after the indexing the query results are slow and explain on select statement doesn\'t show that the index is getting used. Is there anyway I can make my select statement use the index. Here is my query

     

    SELECT distinct r.res_id, r.resource_name,r.resource_url FROM links l, sections s, resources r WHERE l.sec_id = 62 AND r.res_id = l.res_id AND s.sec_id = l.sec_id AND to_days(now()) - to_days(r.update_date) <= 30 ORDER BY r.resource_name asc 

     

    thanks

    anna

×
×
  • 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.