How to find the fifth order for each customer and return title_order
or null if the customer doesn't have the fifth order
Tables are
customer
with columnsId, firstname, lastname
...order
with columnsorder_id, title_order, id_custmer, date
...
It can be done only with a query or do I need to create a function
Thanks in advance