What does TOP 1 mean in an sql query?
SELECT TOP 1 RequestId FROM PublisherRequests
It means only return the top 1 row, i.e. the first row.