This solution only works while you have > 1 rows in your table.
SELECT TOP 1 meetings_id FROM
(SELECT TOP 2 meetings_id, meetings_date FROM meetings
ORDER BY meetings_date DESC) x
ORDER BY meetings_date;
Based on answer from this link.
You'll probably get an error or empty result since there is no penultimate row. So your query will be faulty in this case.