Skip to content
Advertisement

How do I select the max(timestamp) from a relational mysql table fast

We are developing a ticket system and for the dashboard we want to show the tickets with it’s latest status. We have two tables. The first one for the ticket itself and a second table for the individual edits.

The system is running already, but the performance for the dashboard is very bad (6 seconds for ~1300 tickets). At first we used a statemant which selected ‘where timestamp = (select max(Timestamp))’ for every ticket. In the second step we created a view which only includes the latest timestamp for every ticket, but we are not able to also include the correct status into this view.

So the main Problem might be, that we can’t build a table in which for every ticket the lastest ins_date and also the latest status is selected.

Simplyfied database looks like:

I have created a SQL Fiddle: http://sqlfiddle.com/#!9/a873b6/3 The first three Statements are attempts that won’t work correct or way too slow. The last one is the key I think, but I don’t understand, why this gets the status wrong.

The attempt to create the table with latest ins_date AND status for each ticket:

This query gets the correct (latest) ins_date for every ticket, but not the latest status:

Expected output would be this:

Is there a efficient way to select the latest timestamp and status for every ticket in the tiket-table?

Advertisement

Answer

Other approach is to think filtering not GROUPing..

Query

Result

see demo

This query would require a index KEY(ticket, ins_date, id) to get max performance..

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement