Since the hitlisted_date and the combination will be used frequently, you want a composite index on the two columns with hitlisted_date first:
CREATE INDEX i1_hitlist ON hitlist(hitlisted_date, deleted_date);
This index can (and will) be used for queries with a suitable condition on hitlisted_date on its own, or for the two dates.
You may find it beneficial to have a second index on just deleted_date:
CREATE INDEX i2_hitlist ON hitlist(deleted_date);
This can be used for searches on just deleted_date. If you sometimes do searches on a single deleted date and a range of hitlisted dates, then you might find it better to use a compound index that's the reverse of i1_hitlist:
CREATE INDEX i2_hitlist ON hitlist(deleted_date, hitlisted_date);
It's unlikely to be a help, but the only way to be sure is to try it and see. It depends on your query patterns, and the actual conditions your queries use.
There's no real virtue in an index on just hitlisted_date; it just gets in the way of the optimizer (because it has to look at two indexes and decide which is better, and because there is more work to do as rows are inserted, updated and deleted). It is unlikely that the hitlisted date could be a unique index. If it could, then there'd be a separate reason for keeping the single-column index as well as the duplicates index. (See also Is an index on (A,B) redundant if there is an index on (A, B, C).)
After you change indexes, make sure the statistics are up to date (more or less automatic these days, but it used to be important), and then run queries with SET EXPLAIN on to check that the indexes are being used (and which indexes are being used).
longdata types (epoch time) – cppcoder Dec 14 '12 at 4:44