Can anyone help me in the query below to display only the last 10 tickets registered?
I know nothing about SQL, it was not me who created this query.
SELECT ticket.tn, tht.name FROM `ticket_history` th left join ticket on ticket.id = th.ticket_id left join ticket_history_type tht on tht.id = th.history_type_id WHERE th.history_type_id in (29)
Thanks,
[SOLVED] Mysql - display only the last 10 tickets recorded via web?
Moderator: crythias
[SOLVED] Mysql - display only the last 10 tickets recorded via web?
Last edited by amdkryn on 21 May 2015, 17:07, edited 1 time in total.
OTRS version 5.0.27 (With ITSM), Operating System OpenSuse 12 with Mysql.
-
- Moderator
- Posts: 10170
- Joined: 04 May 2010, 18:38
- Znuny Version: 5.0.x
- Location: SouthWest Florida, USA
- Contact:
Re: Mysql - display only the last 10 tickets recorded via web?
Code: Select all
SELECT ticket.tn, tht.name FROM `ticket_history` th left join ticket on ticket.id = th.ticket_id left join ticket_history_type tht on tht.id = th.history_type_id WHERE th.history_type_id in (29)
Code: Select all
SELECT ticket.tn, tht.name FROM `ticket_history` th left join ticket on ticket.id = th.ticket_id left join ticket_history_type tht on tht.id = th.history_type_id WHERE th.history_type_id in (29) order by ticket.tn desc limit 10
Code: Select all
SELECT ticket.tn, tht.name FROM `ticket_history` th left join ticket on ticket.id = th.ticket_id left join ticket_history_type tht on tht.id = th.history_type_id WHERE th.history_type_id in (29) order by ticket.create_time desc limit 10
OTRS 6.0.x (private/testing/public) on Linux with MySQL database.
Please edit your signature to include your OTRS version, Operating System, and database type.
Click Subscribe Topic below to get notifications. Consider amending your topic title to include [SOLVED] if it is so.
Need help? Before you ask
Please edit your signature to include your OTRS version, Operating System, and database type.
Click Subscribe Topic below to get notifications. Consider amending your topic title to include [SOLVED] if it is so.
Need help? Before you ask
Re: Mysql - display only the last 10 tickets recorded via web?
Great, thank you.
OTRS version 5.0.27 (With ITSM), Operating System OpenSuse 12 with Mysql.