What does TOP 1 mean in an sql query?
SELECT TOP 1 RequestId FROM PublisherRequests
It limits the number of rows returned from the query to just 1. Its the same as Limit 1 in MySQL.