What\'s the equivalent to SQL Server\'s TOP or DB2\'s FETCH FIRST or mySQL\'s LIMIT in PostgreSQL?
TOP
FETCH FIRST
LIMIT
Apart from limit you could use Fetch First as well. Your question already had the answer
Select * from users FETCH FIRST 5 ROWS ONLY