I'm looking for the best query possible to get the newest date of a given record set where the fields I need to filter are:
- CreateDate : DATETIME
- TransactionStatus : VARCHAR(10)
- DocumentSeries : VARCHAR(45)
The simpler query is this one
SELECT MAX(CreateDate) FROM transactionsheaders WHERE TransactionStatus="N" AND DocumentSeries='Z';
When I use explain I get
EXPLAIN(SELECT MAX(CreateDate) FROM transactionsheaders WHERE TransactionStatus="N" AND DocumentSeries='Z');
+----+-------------+---------------------+------+---------------+------+---------+------+------+-------------+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
+----+-------------+---------------------+------+---------------+------+---------+------+------+-------------+
| 1 | SIMPLE | transactionsheaders | ALL | NULL | NULL | NULL | NULL | 5752 | Using where |
+----+-------------+---------------------+------+---------------+------+---------+------+------+-------------+
for a total record set of 5715.
Ok, I have no indexes to use and I'm using text and datetime columns... I guess this isn't an easy scenario so I decided to add a column to the table that has the same meaning as DocumentSeries but is an int, so the query will be:
SELECT MAX(CreateDate) FROM transactionsheaders WHERE TransactionStatus="N" AND DocumentSeriesUID=2;
and added an index which agregates the 3 columns with
ALTER TABLE `transactionsheaders` ADD INDEX `index_doc_series` (`DocumentSeriesUID` ASC, `CreateDate` ASC, `TransactionStatus` ASC);
and explain outputs
+----+-------------+---------------------+------+------------------+------------------+---------+-------+------+--------------------------+
| id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra |
+----+-------------+---------------------+------+------------------+------------------+---------+-------+------+--------------------------+
| 1 | SIMPLE | transactionsheaders | ref | index_doc_series | index_doc_series | 4 | const | 2876 | Using where; Using index |
+----+-------------+---------------------+------+------------------+------------------+---------+-------+------+--------------------------+
Q1. Well... apparently I'm using less data, but if I do a count with the same conditions, I get 5703 results, so, this is a little confusing. I know that EXPLAIN estimates the number of rows the query needs to fetch, but how can it be s off?
Then again, I don't need to get everything all at once, so my next test would be to fetch the top 10 results that fit my search criteria
SELECT MAX(Q.CreateDate) FROM((SELECT CreateDate FROM transactionsheaders WHERE TransactionStatus="N" AND DocumentSeriesUID='2' ORDER BY CreateDate DESC LIMIT 10) as Q);
but... If I'm using ORDER BY, I don't need MAX and I just limit to 1?
SELECT CreateDate FROM transactionsheaders WHERE TransactionStatus="N" AND DocumentSeriesUID='2' ORDER BY CreateDate DESC LIMIT 1;
and EXPLAIN yields the same result as the query using MAX.
Well, all of this is just to ask how can I optimize this query? Is it already optimized by sung the index? Can I go further?
Cheers