I want to get the second record from bottom. I tried
SELECT TOP 2 meetings_id FROM meetings ORDER BY meetings_date DESC
EXCEPT
SELECT TOP 1 meetings_id FROM meetings ORDER BY meetings_date DESC
But there is syntax error in except
.
When I try to delete order by
it works but that giving me the second record from the top.