That would really depend on how much information (data points) you are looking to extract.
The more you want to pull out the more complex it will be.
a mysql Query like
select ticket_id,number FROM
ost_ticketWHERE created BETWEEN '2022-01-01' AND '2022-01-31'
would get you a list of all ticket_id's and their ticket numbers created between the dates.
Then you can loop through the results and output it.
You would build the url to the ticket like this
YOURDOMAIN.TLD/scp/tickets.php?id=ticket_id
Then you could use html to link the url.
<a href=http://YOURDOMAIN.TLD/scp/tickets.php?id=ticket_id>number</a>
If you want to do more than that you would need to look at the database ERDs to make the query more complex.
https://docs.osticket.com/en/latest/_static/images/erd_Tickets.pdf